diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f55745df..0229db274 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,47 +20,26 @@ jobs: - { os: "windows-latest", target: "x86_64-pc-windows-msvc", - cross: false, } - { os: "windows-2022", target: "i686-pc-windows-msvc", - cross: true, } - { os: "windows-2019", target: "aarch64-pc-windows-msvc", - cross: true, } - { os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", - cross: false, - } - - { - os: "ubuntu-24.04", - target: "aarch64-unknown-linux-gnu", - cross: true, - } - - { - os: "ubuntu-22.04", - target: "x86_64-unknown-linux-musl", - cross: true, - } - - { - os: "macos-15", - target: "aarch64-unknown-linux-musl", - cross: true, } - { os: "macos-latest", target: "aarch64-apple-darwin", - cross: false } - { os: "macos-13", target: "x86_64-apple-darwin", - cross: false } steps: @@ -84,15 +63,8 @@ jobs: toolchain: stable targets: ${{ matrix.info.target }} - - name: Install musl-tools - if: matrix.info.target == 'x86_64-unknown-linux-musl' == true - run: | - sudo apt-get update - sudo apt-get install -y musl-tools - - name: Build Hayabusa binary run: | - cargo run --release -- update-rules -q cargo build --release --target ${{ matrix.info.target }} - name: Package and Zip - Windows