From 33dec1e77ac36df5020fd16ce59f4622b85dee97 Mon Sep 17 00:00:00 2001 From: Jade Turner Date: Fri, 6 Dec 2024 20:27:49 +0800 Subject: [PATCH] comment out roboRIO build for now Signed-off-by: Jade Turner --- .github/workflows/main.yml | 62 +++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8322fa3..f908e61 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,36 +7,36 @@ concurrency: cancel-in-progress: true jobs: - build-roborio: - name: "Build - roboRIO" - runs-on: ubuntu-latest - container: wpilib/ubuntu-base:22.04 - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 - with: - java-version: 17 - distribution: 'temurin' - - name: Install Ninja - run: | - sudo apt-get update -q - sudo apt-get install -y ninja-build build-essential - - run: curl -SL https://github.com/wpilibsuite/opensdk/releases/download/v2024-1/cortexa9_vfpv3-roborio-academic-2024-x86_64-linux-gnu-Toolchain-12.1.0.tgz | tar xzf - --strip-components=2 - name: Replace arm32 compiler - - name: Install sccache - uses: mozilla-actions/sccache-action@v0.0.5 - - name: Build with CMake - run: | - cmake -G Ninja -B build -S . --toolchain toolchain-config.cmake -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache - cmake --build build --parallel $(nproc) - env: - SCCACHE_GHA_ENABLED: "true" - - run: ./gradlew publish -Pplatform=arm-frc2024-linux - name: Build with Gradle - - uses: actions/upload-artifact@v4 - with: - name: ${{ matrix.artifact-name }} - path: gradleDir/outputs/ + # build-roborio: + # name: "Build - roboRIO" + # runs-on: ubuntu-latest + # container: wpilib/ubuntu-base:22.04 + # steps: + # - uses: actions/checkout@v4 + # - uses: actions/setup-java@v4 + # with: + # java-version: 17 + # distribution: 'temurin' + # - name: Install Ninja + # run: | + # sudo apt-get update -q + # sudo apt-get install -y ninja-build build-essential + # - run: curl -SL https://github.com/wpilibsuite/opensdk/releases/download/v2024-1/cortexa9_vfpv3-roborio-academic-2024-x86_64-linux-gnu-Toolchain-12.1.0.tgz | tar xzf - --strip-components=2 + # name: Replace arm32 compiler + # - name: Install sccache + # uses: mozilla-actions/sccache-action@v0.0.5 + # - name: Build with CMake + # run: | + # cmake -G Ninja -B build -S . --toolchain toolchain-config.cmake -DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache + # cmake --build build --parallel $(nproc) + # env: + # SCCACHE_GHA_ENABLED: "true" + # - run: ./gradlew publish -Pplatform=arm-frc2024-linux + # name: Build with Gradle + # - uses: actions/upload-artifact@v4 + # with: + # name: ${{ matrix.artifact-name }} + # path: gradleDir/outputs/ build-docker: strategy: @@ -198,7 +198,7 @@ jobs: combine: name: Combine - needs: [build-docker, build-roborio, build-windows, make_universal] + needs: [build-docker, build-windows, make_universal] # , build-roborio] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4