authorgravatar for kappaloris@gmail.comLoris Cro <kappaloris@gmail.com> 2022-11-24 16:53:22+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-01-09 14:41:37-07:00
log8c94b98e9f481a8ae5da243d822c41e985a54e4c
tree95d6591674fff7c6da56f278442297fa12633850
parent05afb3f358e6c9fc8ae3ba9f3b135dc93f5d9aad

ci: remove gh action job output as it's not used anymore


1 files changed, 2 insertions(+), 8 deletions(-)

.github/workflows/ci.yaml+2-8
...@@ -10,20 +10,14 @@ concurrency:...@@ -10,20 +10,14 @@ concurrency:
10 cancel-in-progress: true10 cancel-in-progress: true
11jobs:11jobs:
12 x86_64-linux-debug:12 x86_64-linux-debug:
13 outputs:
14 version: ${{ steps.version.outputs.version }}
15 runs-on: [self-hosted, Linux, x86_64]13 runs-on: [self-hosted, Linux, x86_64]
16 steps:14 steps:
17 - name: Checkout15 - name: Checkout
18 uses: actions/checkout@v316 uses: actions/checkout@v3
19 - name: Build and Test17 - name: Build and Test
20 run: sh ./ci/linux/build-x86_64-debug.sh18 run: sh ./ci/linux/build-x86_64-debug.sh
21 # The following step is required by the build-tarballs job.19 - name: Print Version
22 # If this job is being deleted / commented out, make sure20 run: echo "$(build-debug/stage3-debug/bin/zig version)"
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
27 x86_64-linux-release:21 x86_64-linux-release:
28 runs-on: [self-hosted, Linux, x86_64]22 runs-on: [self-hosted, Linux, x86_64]
29 steps:23 steps: