Skip to content
Snippets Groups Projects
Verified Commit 866b1050 authored by Willi Mutschler's avatar Willi Mutschler
Browse files

CI: add job for Homebrew / arm64

backported ed3a0eb6
parent b43d105c
No related branches found
No related tags found
No related merge requests found
Pipeline #9384 failed
......@@ -48,9 +48,22 @@ build_macos_x86_64:
tags:
- macOS
script:
- autoreconf -si
- arch -x86_64 ./configure CC=gcc-13 CXX=g++-13 LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison
- arch -x86_64 autoreconf -si
- arch -x86_64 ./configure CC=/usr/local/gcc-13 CXX=/usr/local/g++-13 LEX=/usr/local/opt/flex/bin/flex YACC=/usr/local/opt/bison/bin/bison
- arch -x86_64 make -j$(sysctl -n hw.ncpu)
artifacts:
paths:
- src/dynare-preprocessor
build_macos_arm64:
stage: build
tags:
- macOS
script:
- export PATH="/opt/homebrew/bin:$PATH"
- arch -arm64 autoreconf -si
- arch -arm64 ./configure CC=/opt/homebrew/gcc-13 CXX=/opt/homebrew/g++-13 LEX=/opt/homebrew/opt/flex/bin/flex YACC=/opt/homebrew/opt/bison/bin/bison
- arch -arm64 make -j$(sysctl -n hw.ncpu)
artifacts:
paths:
- src/dynare-preprocessor
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment