-
Notifications
You must be signed in to change notification settings - Fork 5
39 lines (39 loc) · 1.02 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: test
on:
push:
paths: ["**Makefile", "**.c", "**.h", "**.ino"]
jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make -C test clean run CC=gcc
- run: make -C test clean run CC=clang
- run: make -C test clean run CC=g++
- run: make -C test clean run CC=clang++
- run: make -C test clean upload-coverage
MacOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- run: make -C test clean run CC=gcc
- run: make -C test clean run CC=clang
- run: make -C test clean run CC=g++
- run: make -C test clean run CC=clang++
Windows:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make -C test vc22
- run: make -C test vc98
ArduinoUno:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make -C test uno
Arm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt -y update; sudo apt -y install gcc-arm-none-eabi
- run: make -C test arm