From 091ba2af3f411021d34d8a90765f80ca79f3612a Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Sat, 11 May 2024 11:03:15 -0700 Subject: [PATCH] Remove roboRIO CI build (#523) This project doesn't need to publish cross-compiled binaries since it's so easy for users to build their own with a custom toolchain. --- .github/workflows/build.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eed1d061..39166ce1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -160,30 +160,6 @@ jobs: - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - build-cross: - strategy: - fail-fast: false - matrix: - include: - - artifact-name: roboRIO - container: wpilib/roborio-cross-ubuntu:2024-22.04 - toolchain: /usr/local/toolchain-config.cmake - - name: ${{ matrix.artifact-name }} - runs-on: ubuntu-22.04 - container: ${{ matrix.container }} - steps: - - uses: actions/checkout@v4 - - - run: cmake -B build -S . --toolchain ${{ matrix.toolchain }} -DBUILD_EXAMPLES=ON - - run: cmake --build build --config RelWithDebInfo --parallel $(nproc) - - run: cmake --install build --config RelWithDebInfo --prefix pkg - - - uses: actions/upload-artifact@v4 - with: - name: ${{ matrix.artifact-name }} - path: pkg - build-wasm: name: Wasm runs-on: ubuntu-22.04