-
Notifications
You must be signed in to change notification settings - Fork 326
41 lines (33 loc) · 955 Bytes
/
ubuntu.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
40
41
name: Ubuntu
on:
push:
branches:
- '*'
pull_request:
branches: [ master-dev ]
jobs:
build:
if: github.repository_owner == 'grame-cncm' || github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install libmicrohttpd
run: |
sudo apt-get update -qq
sudo apt-get install libmicrohttpd-dev
- name: Build Faust
run: make
- name: Copy c header to expected path by impulse test
run: |
mkdir -p faust/dsp/
cp compiler/generator/libfaust.h faust/dsp/
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Run impulse tests (C++)
run: cd tests/impulse-tests && make travis
- name: Run impulse tests (Rust)
run: cd tests/impulse-tests && make rust