Skip to content

Commit b494948

Browse files
committed
editing...
1 parent a0773fe commit b494948

File tree

3 files changed

+21
-6
lines changed

3 files changed

+21
-6
lines changed

.github/workflows/deploy_docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- 'main'
7+
- 'workflow'
78

89
jobs:
910
docker:

.github/workflows/mac.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@ name: Build and test on Mac
33
on:
44
push:
55
branches:
6-
- main
7-
- workflow
6+
#- main
7+
- foobar
88
pull_request:
99
branches:
10-
- main
10+
#- main
11+
- foobar
12+
13+
### Current problem compiling conf-openblas on MacOS
14+
### "# clang: error: unsupported option '-fopenmp'"
15+
### Compiling uses cc, which is a wrapper of Apple Clang, which does not support openMP
16+
### And installing brew LLVM and change $CC does not seem to work
1117

1218
jobs:
1319
deploy-owl:

.github/workflows/os.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
name: Multiple MacOSes
22

33
on:
4-
- pull_request
5-
- push
4+
push:
5+
branches:
6+
#- main
7+
- foobar
8+
pull_request:
9+
branches:
10+
#- main
11+
- foobar
12+
13+
14+
###TODO: currently not in use due to Apple clang -fopenmp issue.
615

716
jobs:
817
build:
@@ -36,7 +45,6 @@ jobs:
3645
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
3746
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
3847
export CC=/opt/homebrew/opt/llvm/bin/clang
39-
export CXX=/opt/homebrew/opt/llvm/bin/clang++
4048
which clang
4149
which cc
4250

0 commit comments

Comments
 (0)