diff options
| author | Ayose <ayosec@gmail.com> | 2024-07-29 00:00:00 +0000 |
|---|---|---|
| committer | Ayose <ayosec@gmail.com> | 2024-07-29 00:00:00 +0000 |
| commit | 23c1b2fbcfdc84df806163ea26c5284e598cba2b (patch) | |
| tree | 9cb0c2c362105007efc6866bf1100f3e72831f94 /.github/workflows | |
| parent | 6c4910fd20c7bab08b3bcee00eed4b5e4b37ef08 (diff) | |
| parent | d021a7b6f871f4078073848cf8744881561eb254 (diff) | |
| download | r-alacritty-23c1b2fbcfdc84df806163ea26c5284e598cba2b.tar.gz r-alacritty-23c1b2fbcfdc84df806163ea26c5284e598cba2b.tar.bz2 r-alacritty-23c1b2fbcfdc84df806163ea26c5284e598cba2b.zip | |
Merge remote-tracking branch 'vendor/master' into graphics
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 573c4e0f..2fe8dd2c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,11 +27,11 @@ jobs: run: | rustup component add clippy cargo clippy --all-targets - check-macos-arm: - runs-on: macos-11 + check-macos-x86_64: + runs-on: macos-latest steps: - uses: actions/checkout@v3 - name: Install target - run: rustup update && rustup target add aarch64-apple-darwin + run: rustup update && rustup target add x86_64-apple-darwin - name: Build - run: cargo build --target=aarch64-apple-darwin + run: cargo build --target=x86_64-apple-darwin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3918a540..e161816c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,16 +10,16 @@ env: jobs: macos: - runs-on: macos-11 + runs-on: macos-latest steps: - uses: actions/checkout@v3 - name: Install dependencies run: brew install scdoc - name: Install ARM target - run: rustup update && rustup target add aarch64-apple-darwin + run: rustup update && rustup target add aarch64-apple-darwin && rustup target add x86_64-apple-darwin - name: Test - run: cargo test --release + run: cargo test --release --target=x86_64-apple-darwin - name: Build ARM run: cargo build --release --target=aarch64-apple-darwin - name: Make DMG |