Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andre-schulz committed Jul 31, 2024
1 parent 2f185aa commit 0f9489b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: MVE GitHub Actions CI

on:
push:
branches: [ "master" ]
branches: [ "master", "gh_ci_test" ]
pull_request:
branches: [ "master" ]

Expand All @@ -16,13 +16,13 @@ jobs:

matrix:
platform:
- { name: Ubuntu 20.04 GCC, os: ubuntu-20.04, cpp_compiler: g++ }
- { name: Ubuntu 20.04 Clang, os: ubuntu-20.04, cpp_compiler: clang++ }
- { name: Ubuntu 22.04 GCC, os: ubuntu-22.04, cpp_compiler: g++ }
- { name: Ubuntu 22.04 Clang, os: ubuntu-22.04, cpp_compiler: clang++ }
- { name: macOS 12, os: macos-12, cpp_compiler: clang++ }
- { name: macOS 13, os: macos-13, cpp_compiler: clang++ }
- { name: macOS 14, os: macos-14, cpp_compiler: clang++ }
- { name: Ubuntu 20.04 GCC (x86_64), os: ubuntu-20.04, cpp_compiler: g++ }
- { name: Ubuntu 20.04 Clang (x86_64), os: ubuntu-20.04, cpp_compiler: clang++ }
- { name: Ubuntu 22.04 GCC (x86_64), os: ubuntu-22.04, cpp_compiler: g++ }
- { name: Ubuntu 22.04 Clang (x86_64), os: ubuntu-22.04, cpp_compiler: clang++ }
- { name: macOS 12 (x86_64), os: macos-12, cpp_compiler: clang++ }
- { name: macOS 13 (x86_64), os: macos-13, cpp_compiler: clang++ }
- { name: macOS 14 (arm64), os: macos-14, cpp_compiler: clang++ }

env:
CXX: ${{ matrix.platform.cpp_compiler }}
Expand Down Expand Up @@ -61,6 +61,8 @@ jobs:
- name: Build MVE on Linux/macOS
run: |
uname -a
${CXX} --version
if [ "`uname`" = "Darwin" ]; then
export NUM_CPU_CORES="`sysctl -n hw.ncpu`"
else
Expand Down

0 comments on commit 0f9489b

Please sign in to comment.