Skip to content

Commit

Permalink
👷 Add Simulator CI test (MarlinFirmware#27288)
Browse files Browse the repository at this point in the history
  • Loading branch information
thisiskeithb authored Jul 20, 2024
1 parent 7441094 commit 6900432
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci-build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ jobs:

# Native
- linux_native
- simulator_linux_release

# AVR
- mega2560
Expand Down Expand Up @@ -182,6 +183,13 @@ jobs:
pio upgrade --dev
pio pkg update --global
- name: Install Simulator dependencies
run: |
sudo apt-get install build-essential
sudo apt-get install libsdl2-dev
sudo apt-get install libsdl2-net-dev
sudo apt-get install libglm-dev
- name: Run ${{ matrix.test-platform }} Tests
run: |
make tests-single-ci TEST_TARGET=${{ matrix.test-platform }}
16 changes: 16 additions & 0 deletions buildroot/tests/simulator_linux_release
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
#
# Build tests for Simulator on Linux
#

# exit on first failure
set -e

#
# Build with the default configurations
#
use_example_configs Simulator
exec_test $1 $2 "Simulator" "$3"

# cleanup
restore_configs

0 comments on commit 6900432

Please sign in to comment.