diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index a2d3d058..c7b62a00 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -33,7 +33,6 @@ runs: - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ inputs.rust-version }} - targets: x86_64-unknown-linux-musl components: rustfmt, clippy - uses: Swatinem/rust-cache@v2 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32fed0f6..30717df3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,16 +17,9 @@ jobs: matrix: variant: - { profile: dev, target: x86_64-unknown-linux-musl, glibc: "default" } - - { - profile: release, - target: x86_64-unknown-linux-musl, - glibc: "default", - } - - { - profile: release, - target: x86_64-unknown-linux-musl, - glibc: "2.31", - } + - { profile: release, target: x86_64-unknown-linux-musl, glibc: "default" } + - { profile: release, target: x86_64-unknown-linux-gnu, glibc: "default" } + - { profile: release, target: x86_64-unknown-linux-gnu, glibc: "2.31" } steps: - uses: actions/checkout@v4