forked from firemodels/smv
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (36 loc) · 937 Bytes
/
make-scripts.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
name: Scripts & Make Build
on: [push, pull_request]
env:
CACHE_NUMBER: 2
COMPILER_VERSION: 2022.0.3
jobs:
build-linux-gnu:
name: gnu_linux_${{ matrix.program }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
program:
- background
- convert
- env2mod
- flush
- makepo
- mergepo
- smokediff
- smokeview
- smokezip
- timep
- wind2fds
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build
shell: bash
run: |
sudo apt-get update
sudo apt-get install build-essential freeglut3-dev libx11-dev libxmu-dev libxi-dev
pushd Build/${{ matrix.program }}/gnu_linux_64 || pushd Build/${{ matrix.program }}/gcc_linux_64
./make_${{ matrix.program }}.sh
popd