File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed
Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,14 @@ jobs:
2525 key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2626 - uses : dtolnay/rust-toolchain@stable
2727 - name : Install musl toolchain
28- run : sudo apt-get install -y musl-tools
28+ run : sudo apt-get install -y libssl-dev
2929 - uses : dtolnay/rust-toolchain@stable
3030 name : Setup Cargo Toolchain ποΈ
31- with :
32- targets : x86_64-unknown-linux-musl
3331 - uses : Swatinem/rust-cache@v2
3432 - name : Compile all targets π
35- run : cargo build --release --target x86_64-unknown-linux-musl
33+ run : cargo build --release --target x86_64-unknown-linux-gnu
3634 - name : create tar
37- run : tar -cvzf mirror-clone.tar.gz -C target/x86_64-unknown-linux-musl /release mirror-clone
35+ run : tar -cvzf mirror-clone.tar.gz -C target/x86_64-unknown-linux-gnu /release mirror-clone
3836 - uses : softprops/action-gh-release@v2
3937 id : create_release
4038 env :
Original file line number Diff line number Diff line change @@ -18,16 +18,15 @@ jobs:
1818 - uses : actions/checkout@v5
1919 name : Checkout ποΈ
2020 - name : Install musl toolchain
21- run : sudo apt-get install -y musl-tools
21+ run : sudo apt-get install -y libssl-dev
2222 - uses : dtolnay/rust-toolchain@stable
2323 name : Setup Cargo Toolchain ποΈ
2424 with :
2525 components : rustfmt, clippy
26- targets : x86_64-unknown-linux-musl
2726 - uses : Swatinem/rust-cache@v2
2827 - name : Check Code Format π§
2928 run : cargo fmt -- --check
3029 - name : Run Clippy Lints π¨
3130 run : cargo clippy --all-targets --all-features
3231 - name : Running Tests π
33- run : cargo test --target x86_64-unknown-linux-musl --all-features --workspace
32+ run : cargo test --target x86_64-unknown-linux-gnu --all-features --workspace
You canβt perform that action at this time.
0 commit comments