Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix setting output across jobs
  • Loading branch information
3nids authored and nyalldawson committed Feb 8, 2021
1 parent ab3d05a commit 2c380b7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/run-tests.yml
Expand Up @@ -33,6 +33,10 @@ jobs:
GH_WORKSPACE: ${{ github.workspace }} # used in docker compose

runs-on: ubuntu-latest

outputs:
cdash_url: ${{ steps.unit-tests.outputs.CDASH_URL }}

steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -114,9 +118,6 @@ jobs:
run: |
docker-compose -f .docker/docker-compose-testing.yml run qgis-deps /root/QGIS/.docker/docker-qgis-test.sh
- name: CDASH url
run: echo "${{ steps.unit-tests.outputs.CDASH_URL }}"

- name: QGIS runners
run: |
docker run -d --name qgis-testing-environment \
Expand Down Expand Up @@ -161,4 +162,4 @@ jobs:
runs-on: ubuntu-latest
if: failure()
steps:
- run: echo "${{ jobs.build.steps.unit-tests.outputs.CDASH_URL }}"
- run: echo "${{ needs.build.outputs.cdash_url }}"

0 comments on commit 2c380b7

Please sign in to comment.