File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 4646
4747 integration :
4848 runs-on : ubuntu-latest
49+ strategy :
50+ fail-fast : false
51+ matrix :
52+ pulp :
53+ - " 3.16"
54+ - " 3.18"
4955 steps :
5056 # Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job
5157 - uses : actions/checkout@v2
6167 - name : Run Pulp in one
6268 run : |
6369 tests/pulp-in-one.sh
70+ env :
71+ PULP_TAG : ${{ matrix.pulp }}
6472
6573 # TODO: Use ansible-test to run these.
6674 - name : Running integration tests
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ set -o pipefail
88
99mkdir -p settings
1010
11+ PULP_TAG=${PULP_TAG: 3.18}
12+
1113cat << EOF > settings/settings.py
1214CONTENT_ORIGIN='http://$( hostname) :8080'
1315ANSIBLE_API_HOSTNAME='http://$( hostname) :8080'
@@ -21,7 +23,7 @@ docker run \
2123 --name pulp \
2224 --volume " $( pwd) /settings" :/etc/pulp \
2325 --publish 8080:80 \
24- pulp/pulp:latest
26+ pulp/pulp:$PULP_TAG
2527
2628# Wait for it to come up.
2729attempts=0
You can’t perform that action at this time.
0 commit comments