From 30f320b7d57c00124fbaffccdc45a06e970b8140 Mon Sep 17 00:00:00 2001 From: asonix Date: Wed, 7 Feb 2024 14:24:03 -0600 Subject: [PATCH] semicolons --- .forgejo/workflows/check.yaml | 38 +++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index bb6a41c..87a6c84 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -12,25 +12,25 @@ jobs: steps: - uses: actions/checkout@v4 - run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile minimal -y - export PATH=$PATH:/root/.cargo/bin - rustup target add x86_64-unknown-linux-musl - rustup target add armv7-unknown-linux-musleabihf - rustup target add aarch64-unknown-linux-musl - 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 - 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 - unxz zig.tar.xz - tar -xf zig.tar zig - ls - ls -lh zig - export PATH=$PATH:$(pwd)/zig - chmod +x ./zig/zig - cargo zigbuild --target x86_64-unknown-linux-musl - cargo zigbuild --target armv7-unknown-linux-musleabihf - cargo zigbuild --target aarch64-unknown-linux-musl - cargo clippy --no-default-features -- -D warnings + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain stable --profile minimal -y ; + export PATH=$PATH:/root/.cargo/bin ; + rustup target add x86_64-unknown-linux-musl ; + rustup target add armv7-unknown-linux-musleabihf ; + rustup target add aarch64-unknown-linux-musl ; + 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 ; + 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 ; + unxz zig.tar.xz ; + tar -xf zig.tar zig ; + ls ; + ls -lh zig ; + export PATH=$PATH:$(pwd)/zig ; + chmod +x ./zig/zig ; + cargo zigbuild --target x86_64-unknown-linux-musl ; + cargo zigbuild --target armv7-unknown-linux-musleabihf ; + cargo zigbuild --target aarch64-unknown-linux-musl ; + cargo clippy --no-default-features -- -D warnings ; clippy: runs-on: docker