From 3450932dcee4f2f9b501debc98f7bcd4153bef3a Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Fri, 14 Aug 2026 09:56:04 +0300 Subject: [PATCH] Add testing of simulation run --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7d5b3c0..8024419 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -84,6 +84,15 @@ jobs: run: sudo apt-get install -y libsdl2-dev - name: Build simulator run: make build_simulator + - name: Run simulator + env: + GAZEBO_MODEL_PATH: ${{ github.workspace }}/gazebo/models + GAZEBO_PLUGIN_PATH: ${{ github.workspace }}/gazebo/build + run: | + OUT=$(timeout -k 10s 120s gzserver --verbose gazebo/flix.world 2>&1 | tee /dev/stderr) + if echo "$OUT" | grep -Pq "\[Err\](?! \[RenderEngine)"; then + exit 1 + fi - uses: actions/upload-artifact@v7 with: name: gazebo-plugin-binary