File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 29
29
repository : lf-lang/lingua-franca
30
30
submodules : true
31
31
ref : ${{ inputs.compiler-ref }}
32
+ - name : Install boost on Ubuntu
33
+ run : |
34
+ sudo apt-get update
35
+ sudo apt-get install -y boost boost-dev
36
+ if : matrix.platform == 'ubuntu-latest'
32
37
- name : Set cpp runtime version
33
38
run : |
34
39
echo ${{ inputs.runtime-ref }} > org.lflang/src/org/lflang/generator/cpp/cpp-runtime-version.txt
Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- os : [ubuntu-latest, windows-latest, macos-latest ]
17
+ os : [ubuntu-latest]
18
18
19
19
steps :
20
20
- uses : actions/checkout@v1
23
23
sudo apt-get update
24
24
sudo apt-get install -y clang-tidy
25
25
if : matrix.os == 'ubuntu-latest'
26
+ - name : Install boost on Ubuntu
27
+ run : |
28
+ sudo apt-get update
29
+ sudo apt-get install -y libboost-all-dev
30
+ if : matrix.os == 'ubuntu-latest'
26
31
- name : configure
27
32
run : |
28
33
mkdir build
35
40
cmake --build build --target examples
36
41
37
42
lf-tests-pull-request :
38
- uses : lf-lang/lingua-franca/.github/workflows/cpp-tests.yml@master
43
+ uses : lf-lang/lingua-franca/.github/workflows/cpp-tests.yml@cpp-boost
39
44
with :
40
45
runtime-ref : ${{github.ref}}
41
46
compiler-ref : master
You can’t perform that action at this time.
0 commit comments