From e49f36e62a9e3ada427bc3523ef137ec3643f66a Mon Sep 17 00:00:00 2001 From: Namilskyy Date: Sun, 30 Nov 2025 21:29:50 +0300 Subject: Removed cross-build test in woodpecker.yaml --- .woodpecker.yaml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.woodpecker.yaml b/.woodpecker.yaml index 343c5ce..a0834cb 100644 --- a/.woodpecker.yaml +++ b/.woodpecker.yaml @@ -41,22 +41,22 @@ steps: event: [ push, pull_request ] # Step 3: Build for aarch64 architecture - build-aarch64: - image: ubuntu:latest - commands: - # Install dependencies including aarch64 cross-compiler - - apt-get update && apt-get install -y curl git gcc-aarch64-linux-gnu - # Install Rust toolchain - - curl https://sh.rustup.rs -sSf | sh -s -- -y - # Source the cargo environment - - source "$HOME/.cargo/env" - # Add the aarch64 target - - rustup target add aarch64-unknown-linux-gnu - # Configure the linker for aarch64 target in Cargo config - - echo '[target.aarch64-unknown-linux-gnu]' >> "$HOME/.cargo/config.toml" - - echo 'linker = "aarch64-linux-gnu-gcc"' >> "$HOME/.cargo/config.toml" - # Build for aarch64 target - - cargo build --target aarch64-unknown-linux-gnu --release --verbose --jobs 2 - when: - branch: main - event: [ push, pull_request ] \ No newline at end of file + # build-aarch64: + # image: ubuntu:latest + # commands: + # # Install dependencies including aarch64 cross-compiler + # - apt-get update && apt-get install -y curl git gcc-aarch64-linux-gnu + # # Install Rust toolchain + # - curl https://sh.rustup.rs -sSf | sh -s -- -y + # # Source the cargo environment + # - source "$HOME/.cargo/env" + # # Add the aarch64 target + # - rustup target add aarch64-unknown-linux-gnu + # # Configure the linker for aarch64 target in Cargo config + # - echo '[target.aarch64-unknown-linux-gnu]' >> "$HOME/.cargo/config.toml" + # - echo 'linker = "aarch64-linux-gnu-gcc"' >> "$HOME/.cargo/config.toml" + # # Build for aarch64 target + # - cargo build --target aarch64-unknown-linux-gnu --release --verbose --jobs 2 + # when: + # branch: main + # event: [ push, pull_request ] \ No newline at end of file -- cgit v1.2.3