Skip to content

Commit

Permalink
debug CI #2
Browse files Browse the repository at this point in the history
  • Loading branch information
tkittel committed Nov 3, 2023
1 parent 23cc957 commit 7f9f9a4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/basictest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
strategy:
matrix:
include:
- { os: ubuntu-20.04, CC: gcc-10, CXX: g++-10, python: '3.8' }
- { os: ubuntu-22.04, CC: gcc, CXX: g++, python: '3.9' }
# - { os: ubuntu-20.04, CC: gcc-10, CXX: g++-10, python: '3.8' }
# - { os: ubuntu-22.04, CC: gcc, CXX: g++, python: '3.9' }
- { os: ubuntu-latest, CC: gcc, CXX: g++, python: '3.10' }
- { os: ubuntu-latest, CC: clang, CXX: clang++, python: '3.11' }
- { os: ubuntu-latest, CC: gcc-12, CXX: g++-12, python: '3.11' }
- { os: macos-11, CC: clang, CXX: clang++, python: "3.10" }
- { os: macos-12, CC: clang, CXX: clang++, python: "3.11" }
#- { os: macos-13, CC: clang, CXX: clang++, python: "3.11" }
# - { os: ubuntu-latest, CC: clang, CXX: clang++, python: '3.11' }
# - { os: ubuntu-latest, CC: gcc-12, CXX: g++-12, python: '3.11' }
# - { os: macos-11, CC: clang, CXX: clang++, python: "3.10" }
# - { os: macos-12, CC: clang, CXX: clang++, python: "3.11" }
# #- { os: macos-13, CC: clang, CXX: clang++, python: "3.11" }
name: ${{ matrix.os }}.${{ matrix.CC }}.python-${{ matrix.python }}
runs-on: ${{ matrix.os }}
env:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Build-and-test-release-mode
run: |
which xcrun >/dev/null && export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
cd ./src/resources/example_project_release_mode && simplebuild ONLY=RandUtils -vtj1 --testexcerpts=100
cd ./src/resources/example_project_release_mode && simplebuild -vtj1 --testexcerpts=100
# - name: Build-and-test-debug-mode
# run: |
Expand Down
1 change: 1 addition & 0 deletions resources/example_project_release_mode/simplebuild.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
projects= ["dgcode_val"]
[build]
mode = 'release'
pkg_filter = ['RandUtils','RandTests']

0 comments on commit 7f9f9a4

Please sign in to comment.