From 78b542737afcb048a176bd9d37e5a85d99e07d45 Mon Sep 17 00:00:00 2001 From: Austin Shalit Date: Wed, 30 Dec 2020 11:38:49 -0800 Subject: [PATCH] [build] Add Gazebo build to Actions CI (#3004) --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a58970b7bb..fea71cffd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -166,6 +166,17 @@ jobs: run: ctest -C "Debug" working-directory: ${{ runner.workspace }}/build/ + build-gazebo: + name: "Build - Gazebo" + runs-on: ubuntu-latest + container: wpilib/gazebo-ubuntu:18.04 + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Build with Gradle + run: ./gradlew build -PbuildServer -PmakeSim + wpiformat: name: "wpiformat" runs-on: ubuntu-latest