From 0f9489b8c361328946d892c43fffcfb147e75c6a Mon Sep 17 00:00:00 2001 From: Andre Schulz Date: Sat, 11 May 2024 13:23:32 +0200 Subject: [PATCH] Test CI --- .github/workflows/build.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c56a8f225..5a990f162 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: MVE GitHub Actions CI on: push: - branches: [ "master" ] + branches: [ "master", "gh_ci_test" ] pull_request: branches: [ "master" ] @@ -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 }} @@ -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