semicolons

This commit is contained in:
asonix 2024-02-07 14:24:03 -06:00
parent d646a0d7f8
commit 30f320b7d5
1 changed files with 19 additions and 19 deletions

View File

@ -12,25 +12,25 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: | - run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile minimal -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile minimal -y ;
export PATH=$PATH:/root/.cargo/bin export PATH=$PATH:/root/.cargo/bin ;
rustup target add x86_64-unknown-linux-musl rustup target add x86_64-unknown-linux-musl ;
rustup target add armv7-unknown-linux-musleabihf rustup target add armv7-unknown-linux-musleabihf ;
rustup target add aarch64-unknown-linux-musl rustup target add aarch64-unknown-linux-musl ;
rustup component add clippy rustup component add clippy ;
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash ;
yes | cargo binstall cargo-zigbuild yes | cargo binstall cargo-zigbuild ;
curl -L --proto '=https' --tlsv1.2 -sSf https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz > zig.tar.gz curl -L --proto '=https' --tlsv1.2 -sSf https://ziglang.org/download/0.11.0/zig-linux-x86_64-0.11.0.tar.xz > zig.tar.gz ;
unxz zig.tar.xz unxz zig.tar.xz ;
tar -xf zig.tar zig tar -xf zig.tar zig ;
ls ls ;
ls -lh zig ls -lh zig ;
export PATH=$PATH:$(pwd)/zig export PATH=$PATH:$(pwd)/zig ;
chmod +x ./zig/zig chmod +x ./zig/zig ;
cargo zigbuild --target x86_64-unknown-linux-musl cargo zigbuild --target x86_64-unknown-linux-musl ;
cargo zigbuild --target armv7-unknown-linux-musleabihf cargo zigbuild --target armv7-unknown-linux-musleabihf ;
cargo zigbuild --target aarch64-unknown-linux-musl cargo zigbuild --target aarch64-unknown-linux-musl ;
cargo clippy --no-default-features -- -D warnings cargo clippy --no-default-features -- -D warnings ;
clippy: clippy:
runs-on: docker runs-on: docker