Skip to content

Commit f01cddb

Browse files
committed
ci: update nightly to use source path
1 parent 631ae5a commit f01cddb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
docker-registry: docker.pkg.github.com
11-
docker-config-path: ci/docker
11+
docker-config-path: source/ci/docker
1212

1313
jobs:
1414
# Run our nightly builds. We build a matrix with the various build
@@ -218,15 +218,15 @@ jobs:
218218
path: source
219219
fetch-depth: 0
220220
- name: Set up build environment
221-
run: ci/setup-${{ matrix.platform.setup-script }}.sh
221+
run: source/ci/setup-${{ matrix.platform.setup-script }}.sh
222222
shell: bash
223223
if: matrix.platform.setup-script != ''
224224
- name: Setup QEMU
225225
run: docker run --rm --privileged multiarch/qemu-user-static:register --reset
226226
if: matrix.platform.container.qemu == true
227227
- name: Download container
228228
run: |
229-
"${{ github.workspace }}/ci/getcontainer.sh" "${{ matrix.platform.container.name }}" "${{ matrix.platform.container.dockerfile }}"
229+
"${{ github.workspace }}/source/ci/getcontainer.sh" "${{ matrix.platform.container.name }}" "${{ matrix.platform.container.dockerfile }}"
230230
env:
231231
DOCKER_REGISTRY: ${{ env.docker-registry }}
232232
GITHUB_TOKEN: ${{ secrets.github_token }}
@@ -272,15 +272,16 @@ jobs:
272272
- name: Check out repository
273273
uses: actions/checkout@v2
274274
with:
275+
path: source
275276
fetch-depth: 0
276277
- name: Download container
277278
run: |
278-
"${{ github.workspace }}/ci/getcontainer.sh" xenial
279+
"${{ github.workspace }}/source/ci/getcontainer.sh" xenial
279280
env:
280281
DOCKER_REGISTRY: ${{ env.docker-registry }}
281282
GITHUB_TOKEN: ${{ secrets.github_token }}
282283
working-directory: ${{ env.docker-config-path }}
283284
- name: Run Coverity
284-
run: ci/coverity.sh
285+
run: source/ci/coverity.sh
285286
env:
286287
COVERITY_TOKEN: ${{ secrets.coverity_token }}

0 commit comments

Comments
 (0)