| ... | ... | @@ -10,20 +10,14 @@ concurrency: |
| 10 | 10 | cancel-in-progress: true |
| 11 | 11 | jobs: |
| 12 | 12 | x86_64-linux-debug: |
| 13 | | outputs: |
| 14 | | version: ${{ steps.version.outputs.version }} |
| 15 | 13 | runs-on: [self-hosted, Linux, x86_64] |
| 16 | 14 | steps: |
| 17 | 15 | - name: Checkout |
| 18 | 16 | uses: actions/checkout@v3 |
| 19 | 17 | - name: Build and Test |
| 20 | 18 | run: sh ./ci/linux/build-x86_64-debug.sh |
| 21 | | # The following step is required by the build-tarballs job. |
| 22 | | # If this job is being deleted / commented out, make sure |
| 23 | | # to have another job provide this information. |
| 24 | | - name: Get Version |
| 25 | | id: version |
| 26 | | run: echo "version=$(stage3-debug/bin/zig version)" >> $GITHUB_OUTPUT |
| 19 | - name: Print Version |
| 20 | run: echo "$(build-debug/stage3-debug/bin/zig version)" |
| 27 | 21 | x86_64-linux-release: |
| 28 | 22 | runs-on: [self-hosted, Linux, x86_64] |
| 29 | 23 | steps: |