-
Notifications
You must be signed in to change notification settings - Fork 15
38 lines (30 loc) · 1010 Bytes
/
aunit_tests.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
# See https://docs.github.com/en/actions/guides for documentation about GitHub
# Actions.
name: AUnit Tests
# Run on all branches.
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup
run: |
sudo apt update
sudo apt install -y libcurl4-openssl-dev
cd ..
git clone --depth 1 https://github.com/HowardHinnant/date
git clone --depth 1 https://github.com/bxparks/EpoxyDuino
git clone --depth 1 https://github.com/bxparks/AceRoutine
git clone --depth 1 https://github.com/bxparks/AUnit
git clone --depth 1 https://github.com/bxparks/AceCommon
git clone --depth 1 https://github.com/bxparks/AceWire
git clone --depth 1 https://github.com/bxparks/AceSorting
- name: Verify examples
run: |
make -C examples
make -C examples/MemoryBenchmark epoxy
- name: Verify tests
run: |
make -C tests
make -C tests runtests