-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (33 loc) · 979 Bytes
/
ci.yaml
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
name: Run tests
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
TEST_ENV: [ubuntu-18.04-llvm-5.0, ubuntu-18.04-llvm-6.0, formatting]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Build and run tests
run: |
docker-compose build ${{ matrix.TEST_ENV }}
docker-compose run ${{ matrix.TEST_ENV }}
if [[ "${{ matrix.TEST_ENV }}" = *llvm-6.0 ]]; then
export VERSION="${{ github.sha }}";
docker-compose build bindgen;
find . -name target | xargs sudo rm -rf;
scripts/docker-test.sh;
fi
- name: Check formatting
if: matrix.TEST_ENV == 'formatting'
run: |
clang-format --version
scripts/scalafmt --test
scripts/clangfmt --test