name: Linux-armv7 env: DEBUG: 'napi:*' CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_LINKER: 'arm-linux-gnueabihf-gcc' on: push: branches: - main pull_request: jobs: build: name: stable - armv7-unknown-linux-gnu - node@16 runs-on: ubuntu-latest steps: - run: docker run --rm --privileged multiarch/qemu-user-static:register --reset - uses: actions/checkout@v3 - name: Setup node uses: actions/setup-node@v3 with: node-version: 16 check-latest: true cache: 'yarn' - name: Install uses: actions-rs/toolchain@v1 with: toolchain: stable profile: minimal override: true target: armv7-unknown-linux-gnueabihf - name: Cache cargo uses: actions/cache@v2 with: path: | ~/.cargo/registry ~/.cargo/git target key: stable-linux-armv7-gnu-node@16-cargo-cache - name: Cache NPM dependencies uses: actions/cache@v2 with: path: node_modules key: npm-cache-linux-armv7-gnu-node@16-${{ hashFiles('yarn.lock') }} - name: Install cross compile toolchain run: | sudo apt-get update sudo apt-get install gcc-arm-linux-gnueabihf -y - name: Install dependencies run: yarn install --immutable --mode=skip-build - name: 'Build TypeScript' run: yarn build - name: Cross build native tests run: yarn build:test:armv7 - name: Setup and run tests uses: addnab/docker-run-action@v3 with: image: ghcr.io/napi-rs/napi-rs/nodejs:armhf-16 options: -v ${{ github.workspace }}:/build -w /build run: yarn test