We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a12a6 commit b8312b4Copy full SHA for b8312b4
1 file changed
.github/workflows/test-pr.yaml
@@ -121,5 +121,13 @@ jobs:
121
- name: "Install latest devcontainer CLI"
122
run: npm install -g @devcontainers/cli
123
124
+ - name: "Isolate scenario '${{ matrix.scenario }}'"
125
+ run: |
126
+ sudo apt-get update && sudo apt-get install -y jq
127
+ sed 's://.*$::' test/docker-in-docker/scenarios.json \
128
+ | jq '{ "${{ matrix.scenario }}": .["${{ matrix.scenario }}"] }' \
129
+ > test/docker-in-docker/scenarios.json.tmp
130
+ mv test/docker-in-docker/scenarios.json.tmp test/docker-in-docker/scenarios.json
131
+
132
- name: "Testing docker-in-docker scenario '${{ matrix.scenario }}'"
133
run: devcontainer features test --features docker-in-docker --filter ${{ matrix.scenario }} --skip-autogenerated .
0 commit comments