From 56a114486588ed79ec32a5fff19f850f4301b00a Mon Sep 17 00:00:00 2001 From: epi Date: Fri, 5 Mar 2021 09:21:00 -0600 Subject: [PATCH] testing ci build of armv7 --- .github/workflows/build.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bad1d11..85ded35 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,10 +5,10 @@ on: [push] jobs: build-nix: runs-on: ${{ matrix.os }} - if: github.ref == 'refs/heads/main' +# if: github.ref == 'refs/heads/main' strategy: matrix: - type: [ubuntu-x64, ubuntu-x86] + type: [ubuntu-x64, ubuntu-x86, armv7] include: - type: ubuntu-x64 os: ubuntu-latest @@ -22,12 +22,18 @@ jobs: name: x86-linux-feroxbuster path: target/i686-unknown-linux-musl/release/feroxbuster pkg_config_path: /usr/lib/i686-linux-gnu/pkgconfig + - type: armv7 + os: ubuntu-latest + target: armv7-unknown-linux-gnueabihf + name: armv7-feroxbuster + path: target/armv7-unknown-linux-gnueabihf/release/feroxbuster + pkg_config_path: /usr/lib/x86_64-linux-gnu/pkgconfig steps: - uses: actions/checkout@v2 - name: Install System Dependencies run: | sudo apt-get update - sudo apt-get install -y --no-install-recommends libssl-dev pkg-config + sudo apt-get install -y --no-install-recommends libssl-dev pkg-config gcc-arm-linux-gnueabihf - uses: actions-rs/toolchain@v1 with: toolchain: stable