forked from dealii/dealii
-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (94 loc) · 2.89 KB
/
osx.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: github-OSX
on:
push:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
concurrency:
group: ${ {github.event_name }}-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{github.event_name == 'pull_request'}}
permissions:
contents: read
jobs:
osx-serial:
# simple serial build using apple clang
name: OSX serial
runs-on: [macos-latest]
#
# The following condition only runs the workflow on 'push' or if the
# 'pull_request' is not a draft. This is only useful for hackathons or
# other situations when the CI is massively overburdened with pull
# requests.
#
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v4
- name: info
run: |
g++ -v
cmake --version
- name: configure
run: |
cmake -D CMAKE_BUILD_TYPE=Debug -D DEAL_II_CXX_FLAGS='-Werror' -D DEAL_II_EARLY_DEPRECATIONS=ON .
- name: print detailed.log
run: cat detailed.log
- name: build
run: |
make VERBOSE=1 -j2
make -j2 \
setup_tests_a-framework \
setup_tests_quick_tests
ctest --output-on-failure -j2 -VV
- name: upload CMakeConfigureLog
uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
name: osx-serial-CMakeConfigureLog.yaml
path: CMakeFiles/CMakeConfigureLog.yaml
osx-parallel64:
# MPI build using apple clang and 64 bit indices
name: OSX parallel 64bit
runs-on: [macos-latest]
#
# The following condition only runs the workflow on 'push' or if the
# 'pull_request' is not a draft. This is only useful for hackathons or
# other situations when the CI is massively overburdened with pull
# requests.
#
# if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v4
- name: setup
run: |
brew install openmpi
# uncomment these for a gcc based build
#export OMPI_CXX=g++
#export OMPI_CC=gcc
#export OMPI_FC=gfortran
- name: info
run: |
mpicxx -v
cmake --version
- name: configure
run: |
CC=mpicc CXX=mpic++ cmake -D CMAKE_BUILD_TYPE=Debug -D DEAL_II_WITH_64BIT_INDICES=ON -D DEAL_II_CXX_FLAGS='-Werror' -D DEAL_II_EARLY_DEPRECATIONS=ON -D DEAL_II_WITH_MPI=on .
- name: print detailed.log
run: cat detailed.log
- name: build
run: |
make VERBOSE=1 -j2
make -j2 \
setup_tests_a-framework \
setup_tests_quick_tests
ctest --output-on-failure -j2 -VV
- name: upload CMakeConfigureLog
uses: actions/upload-artifact@v4
if: always()
continue-on-error: true
with:
name: osx-parallel64-CMakeConfigureLog.yaml
path: CMakeFiles/CMakeConfigureLog.yaml