Skip to content

Commit

Permalink
Update release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Aug 20, 2024
1 parent 6d52d5a commit f2bf698
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,18 @@ jobs:
strategy:
matrix:
platform:
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu }
- { os: ubuntu-latest, target: aarch64-unknown-linux-gnu }
- { os: ubuntu-latest, target: x86_64-unknown-linux-musl }
- { os: ubuntu-latest, target: aarch64-unknown-linux-musl }
- { os: macos-latest, target: x86_64-apple-darwin }
- { os: macos-latest, target: aarch64-apple-darwin }
- { os: windows-latest, target: x86_64-pc-windows-msvc }
- { os: windows-latest, target: aarch64-pc-windows-msvc }
- { os: macOS-latest, target: x86_64-apple-darwin }
- { os: macOS-latest, target: aarch64-apple-darwin }
# - { os: windows-latest, target: x86_64-pc-windows-msvc }
# - { os: windows-latest, target: aarch64-pc-windows-msvc }
runs-on: ${{ matrix.platform.os }}
steps:
- uses: actions/checkout@v4

- name: Install dependencies for musl
if: runner.os == 'Linux' && contains(matrix.platform.target, 'musl')
if: matrix.platform.os == 'ubuntu-latest'
run: sudo apt-get -qq install musl-tools

- name: Install Rust toolchain
Expand Down

0 comments on commit f2bf698

Please sign in to comment.