aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-01-20 11:57:49 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-01-22 12:14:25 -0700
commit3df4707ea79d292f07e0d78ae7dd76266eeb1a16 (patch)
tree0fc883047a5d5fed67d8f4029a96bddc999bc4f3 /.github
parentc0284e242f7d78955204dc8a627fecd45aa5e521 (diff)
downloadzig-3df4707ea79d292f07e0d78ae7dd76266eeb1a16.tar.gz
zig-3df4707ea79d292f07e0d78ae7dd76266eeb1a16.zip
CI: also test x86_64-macos with a debug zig compiler
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yaml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index a0ff406dec..34e029cdd5 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v3
- name: Build and Test
run: sh ci/aarch64-linux-release.sh
- x86_64-macos:
+ x86_64-macos-debug:
runs-on: "macos-11"
env:
ARCH: "x86_64"
@@ -46,7 +46,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Build and Test
- run: ci/x86_64-macos.sh
+ run: ci/x86_64-macos-debug.sh
+ x86_64-macos-release:
+ runs-on: "macos-11"
+ env:
+ ARCH: "x86_64"
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Build and Test
+ run: ci/x86_64-macos-release.sh
aarch64-macos:
runs-on: [self-hosted, macOS, aarch64]
env: