File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
ansible/roles/podman/tasks Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 25
25
steps :
26
26
- uses : actions/checkout@v2
27
27
28
+ - name : Override CI_CLOUD if PR label is present
29
+ if : ${{ github.event_name == 'pull_request' }}
30
+ run : |
31
+ # Iterate over the labels
32
+ labels=$(echo '${{ toJSON(github.event.pull_request.labels) }}' | jq -r '.[].name')
33
+ echo $labels
34
+ for label in $labels; do
35
+ if [[ $label == CI_CLOUD=* ]]; then
36
+ # Extract the value after 'CI_CLOUD='
37
+ CI_CLOUD_OVERRIDE=${label#CI_CLOUD=}
38
+ echo "CI_CLOUD=${CI_CLOUD_OVERRIDE}" >> $GITHUB_ENV
39
+ fi
40
+ done
41
+
28
42
- name : Record settings for CI cloud
29
43
run : |
30
44
echo CI_CLOUD: ${{ env.CI_CLOUD }}
Original file line number Diff line number Diff line change 55
55
# Type Path Mode User Group Age Argument
56
56
R! /tmp/containers-user-*
57
57
R! /tmp/podman-run-*
58
+ R! /tmp/storage-run-*
58
59
dest : /etc/tmpfiles.d/podman-local.conf
59
60
owner : root
60
61
group : root
Original file line number Diff line number Diff line change 25
25
26
26
collections :
27
27
- name : containers.podman
28
- version : 1.10 .2
28
+ version : 1.16 .2
29
29
- name : community.grafana
30
30
version : 1.5.4
31
31
- name : https://github.com/stackhpc/ansible_collection_slurm_openstack_tools
You can’t perform that action at this time.
0 commit comments