Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni committed May 28, 2024
1 parent f808c21 commit e756eea
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/knuth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ name: Build and Test
on: [push, pull_request]

jobs:

test-macos-14-x86:
name: Test macOS 14 x86_64
runs-on: macos-14
steps:
- name: Hello
run: |
echo "Hello from macos-14 x86_64"
test-macos-14-arm:
name: Test macOS 14 ARM
runs-on: macos-14-arm64
steps:
- name: Hello
run: |
echo "Hello from macos-14 ARM"
generate-matrix:
name: Generate Job Matrix
if: github.ref == 'refs/heads/master'
Expand Down Expand Up @@ -151,8 +168,8 @@ jobs:
npm --version
brew update &>/dev/null
brew outdated pyenv || brew upgrade pyenv
brew install pyenv-virtualenv
brew outdated pyenv || brew upgrade pyenv &>/dev/null
brew install pyenv-virtualenv &>/dev/null
# brew install cmake || true
if which pyenv > /dev/null; then
Expand All @@ -175,7 +192,6 @@ jobs:
# npm install -g node-pre-gyp-github
npm install -g @mmomtchev/node-pre-gyp-github
# pip install conan_package_tools --upgrade
# pip install conan --upgrade
pip install kthbuild --upgrade
Expand Down Expand Up @@ -216,7 +232,6 @@ jobs:
conan install . --build=missing -s compiler.cppstd=20
# -o c-api/*:march_id=ZLm9Pjh
echo "*** KTH_GHA_ARCH: ${KTH_GHA_ARCH}"
# export KTH_ARCH=${KTH_GHA_ARCH}
# echo "*** KTH_ARCH: ${KTH_ARCH}"
Expand Down

0 comments on commit e756eea

Please sign in to comment.