diff --git a/.github/workflows/snapshot-build.yml b/.github/workflows/snapshot-build.yml index 24aa942d546..b9da0b69f89 100644 --- a/.github/workflows/snapshot-build.yml +++ b/.github/workflows/snapshot-build.yml @@ -149,7 +149,7 @@ jobs: run: sudo apt-get install -y --no-install-recommends g++-aarch64-linux-gnu gcc-aarch64-linux-gnu libc6-dev-arm64-cross if: matrix.build.target == 'aarch64-unknown-linux-gnu' - - name: Build (farmer on Ubuntu or Windows with OpenCL) + - name: Build farmer on Ubuntu or Windows with OpenCL uses: actions-rs/cargo@v1 with: command: build @@ -166,11 +166,17 @@ jobs: move ${{ env.PRODUCTION_TARGET }}/subspace-farmer.exe ${{ env.PRODUCTION_TARGET }}/subspace-farmer-opencl.exe if: runner.os == 'Windows' - - name: Build (farmer and node without OpenCL) + - name: Build farmer without OpenCL uses: actions-rs/cargo@v1 with: command: build - args: -Z build-std --target ${{ matrix.build.target }} --profile production --bin subspace-node --bin subspace-farmer + args: -Z build-std --target ${{ matrix.build.target }} --profile production --bin subspace-farmer + + - name: Build node + uses: actions-rs/cargo@v1 + with: + command: build + args: -Z build-std --target ${{ matrix.build.target }} --profile production --bin subspace-node - name: Sign Application (macOS) run: |