Skip to content

Commit 8c50e68

Browse files
committed
editing...
1 parent 6706500 commit 8c50e68

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/deploy_docker.yml

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

98
jobs:
109
docker:

.github/workflows/mac.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
brew install libomp aspcud gcc
3232
export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
3333
export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"
34-
brew reinstall openblas --cc=gcc-13
3534
export CC=gcc-13
3635
export CXX=g++-13
3736

.github/workflows/os.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@ jobs:
1313
- macos-14 # beta runner for macos arm64
1414
- macos-latest
1515
# - ubuntu-latest
16-
# - windows-latest
1716
ocaml-compiler:
1817
- "5.2"
19-
# - "5.1"
20-
# - "5"
21-
# - "4.14"
22-
# - "4.12"
2318

2419
runs-on: ${{ matrix.os }}
2520

@@ -33,8 +28,13 @@ jobs:
3328
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3429
opam-local-packages: |
3530
*.opam
36-
37-
- run: export OPENBLAS_NO_OPENMP=1
31+
32+
- name: Deps
33+
run: |
34+
brew install libomp gcc
35+
export CC=gcc-13
36+
export CXX=g++-13
37+
export PKG_CONFIG_PATH="$(brew --prefix openblas)/lib/pkgconfig:$PKG_CONFIG_PATH"
3838
3939
- run: opam depext owl --with-test
4040

0 commit comments

Comments
 (0)