Firmware2/.github/workflows/test-builds.yml

148 lines
3.2 KiB
YAML
Raw Normal View History

2020-01-12 01:38:47 +01:00
#
# test-builds.yml
# Do test builds to catch compile errors
#
name: CI
on:
pull_request:
branches:
- bugfix-2.0.x
paths-ignore:
- config/**
- data/**
- docs/**
- '**/*.md'
2020-07-05 22:46:00 +02:00
push:
branches:
- bugfix-2.0.x
paths-ignore:
- config/**
- data/**
- docs/**
- '**/*.md'
2020-01-12 01:38:47 +01:00
jobs:
test_builds:
2020-07-05 22:41:29 +02:00
name: Run All Tests
if: github.repository == 'MarlinFirmware/Marlin'
2020-01-12 01:38:47 +01:00
runs-on: ubuntu-latest
strategy:
matrix:
test-platform:
# Base Environments
- DUE
2021-05-15 06:09:38 +02:00
- DUE_archim
2020-01-12 01:38:47 +01:00
- esp32
- linux_native
- mega2560
2021-05-15 06:09:38 +02:00
- at90usb1286_dfu
2020-01-12 01:38:47 +01:00
- teensy31
- teensy35
2020-09-23 00:36:59 +02:00
- teensy41
2020-02-14 06:28:18 +01:00
- SAMD51_grandcentral_m4
2020-01-12 01:38:47 +01:00
# Extended AVR Environments
2021-05-15 06:09:38 +02:00
- FYSETC_F6
- mega1280
2020-01-12 01:38:47 +01:00
- rambo
- sanguino1284p
- sanguino644p
2020-01-12 01:38:47 +01:00
2021-05-15 06:09:38 +02:00
# STM32F1 (Maple) Environments
2020-01-12 01:38:47 +01:00
#- STM32F103RC_btt_maple
- STM32F103RC_btt_USB_maple
- STM32F103RC_fysetc_maple
2022-05-14 08:45:14 +02:00
- STM32F103RC_meeb_maple
- jgaurora_a5s_a1_maple
- STM32F103VE_longer_maple
#- mks_robin_maple
- mks_robin_lite_maple
- mks_robin_pro_maple
#- mks_robin_nano35_maple
#- STM32F103RE_creality_maple
- STM32F103VE_ZM3E4V2_USB_maple
2021-05-11 17:44:54 +02:00
# STM32 (ST) Environments
- STM32F103RC_btt
#- STM32F103RC_btt_USB
- STM32F103RE_btt
- STM32F103RE_btt_USB
- STM32F103RE_creality
- STM32F401RC_creality
- STM32F103VE_longer
2020-01-12 01:38:47 +01:00
- STM32F407VE_black
2020-05-10 08:49:30 +02:00
- STM32F401VE_STEVAL
- BIGTREE_BTT002
2020-01-12 01:38:47 +01:00
- BIGTREE_SKR_PRO
- BIGTREE_GTR_V1_0
- mks_robin
2020-01-12 01:38:47 +01:00
- ARMED
- FYSETC_S6
- STM32F070CB_malyan
2020-05-10 08:49:30 +02:00
- STM32F070RB_malyan
2020-04-17 16:10:41 +02:00
- malyan_M300
2020-05-10 08:49:30 +02:00
- FLYF407ZG
- rumba32
2020-07-07 00:08:52 +02:00
- LERDGEX
- LERDGEK
- mks_robin_nano35
2021-05-15 06:09:38 +02:00
- NUCLEO_F767ZI
- REMRAM_V1
- BTT_SKR_SE_BX
- chitu_f103
- Index_Mobo_Rev03
2020-01-12 01:38:47 +01:00
# Put lengthy tests last
- LPC1768
- LPC1769
# Non-working environment tests
#- at90usb1286_cdc
#- STM32F103CB_malyan
2021-05-15 06:09:38 +02:00
#- STM32F103RE
2020-01-12 01:38:47 +01:00
#- mks_robin_mini
steps:
2021-06-06 10:49:23 +02:00
- name: Check out the PR
2022-03-26 02:34:15 +01:00
uses: actions/checkout@v3
2021-06-06 10:49:23 +02:00
- name: Cache pip
2022-03-26 02:34:15 +01:00
uses: actions/cache@v3
2021-06-06 10:49:23 +02:00
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
2022-03-26 02:34:15 +01:00
uses: actions/cache@v3
2021-06-06 10:49:23 +02:00
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
2020-01-12 01:38:47 +01:00
- name: Select Python 3.7
2022-03-26 02:34:15 +01:00
uses: actions/setup-python@v3
2020-01-12 01:38:47 +01:00
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install PlatformIO
run: |
pip install -U platformio
pio upgrade --dev
pio pkg update --global
2020-01-12 01:38:47 +01:00
- name: Run ${{ matrix.test-platform }} Tests
run: |
2021-05-15 06:09:38 +02:00
make tests-single-ci TEST_TARGET=${{ matrix.test-platform }}