Skip to content

Commit

Permalink
Remove roboRIO CI build
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
calcmogul committed May 11, 2024
1 parent e4459ef commit 4081430
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4081430

Please sign in to comment.