-
Notifications
You must be signed in to change notification settings - Fork 19
executable file
·56 lines (53 loc) · 1.32 KB
/
build-macos.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Build-macOS
on:
push:
paths-ignore:
- 'doc/**'
- '**.md'
workflow_run:
workflows: ["clang-format"]
branches: [master]
types:
- completed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Remove existing links
run: |
rm '/usr/local/bin/2to3'
rm '/usr/local/bin/2to3-3.11'
- name: Update brew
run: |
clang -v
brew update
- name: Install nlohmann-json
run: |
brew install nlohmann-json
- name: Install googletest
run: |
brew install googletest
# - name: Install Python
# run: |
# brew install python
- name: Install boost
run: |
brew install boost
- name: Install Simgrid
run: |
git clone https://framagit.org/simgrid/simgrid.git
cd simgrid
git checkout 748fabf6540d3b6e2d58a36d0363985f0ddb85d9
cmake .
make -j4
make install
- name: Source Build and Test
run: |
# build and test wrench
cmake -DENABLE_BATSCHED=off -DCMAKE_VERBOSE_MAKEFILE=ON .
make -j4 all unit_tests
./unit_tests