diff options
author | Christian Duerr <contact@christianduerr.com> | 2022-01-13 03:23:37 +0100 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2022-01-13 03:44:09 +0100 |
commit | c05914192fc7d6353d633fc9e5db43f3b688af3b (patch) | |
tree | 196c71ceaa364906913e5d141a78faf71f7d01a8 /.github/workflows/ci.yml | |
parent | 41d0eb5ecdd62b679a739a84527e653974a494c9 (diff) | |
download | alacritty-c05914192fc7d6353d633fc9e5db43f3b688af3b.tar.gz alacritty-c05914192fc7d6353d633fc9e5db43f3b688af3b.zip |
Fix macOS release CI
Since the CI machine is amd64, it is not possible to just execute the
aarch64 binary to test the application. So instead of running `cargo
test`, we just use `cargo build` instead.
Building on the non-release CI instead of just checking also allows us
to make sure linking works properly before a release fails due to it.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65e8f277..80de4501 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,5 +31,5 @@ jobs: - uses: actions/checkout@v2 - name: Install target run: rustup update && rustup target add aarch64-apple-darwin - - name: Check build - run: cargo check --target=aarch64-apple-darwin + - name: Build + run: cargo build --target=aarch64-apple-darwin |