Skip to content

Commit

Permalink
removed cmake test builds in the old test.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdcvlsc committed May 30, 2024
1 parent 535deeb commit 279efaf
Showing 1 changed file with 0 additions and 46 deletions.
46 changes: 0 additions & 46 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,52 +7,6 @@ on:
branches: [ main ]

jobs:
build-others:
name: ${{ matrix.platform.name }}
runs-on: ${{ matrix.platform.os }}

strategy:
fail-fast: false
matrix:
platform:
# - { name: Linux Clang, os: ubuntu-latest, outpath: './tests/', flags: -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ }
- { name: Windows VS2019, os: windows-2019, outpath: 'tests\Release\', fext: .exe, }
- { name: Windows VS2022, os: windows-2022, outpath: 'tests\Release\', fext: .exe, }
- { name: MacOS XCode, os: macos-latest, outpath: './tests/' }
# - { name: Linux GCC, os: ubuntu-latest, outpath: './tests/' }

steps:
- uses: actions/checkout@v3

- name: System Info
run: cmake cmake -S tests -B tests ${{matrix.platform.flags}}

- name: Build
run: cmake --build tests --config Release

- run: "${{matrix.platform.outpath}}addition${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}bitwise-and${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}bitwise-not${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}bitwise-or${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}bitwise-xor${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}boolean${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}constructor-initializer-list${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}constructor-integral${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}constructor-string-view${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}decrement${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}division${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}increment${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}modulo${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}multiplication${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}relational${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}shifts${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}subtraction${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}template${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}to-string-base10${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}to-string-base16${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}to-string-base2${{matrix.platform.fext}}"
- run: "${{matrix.platform.outpath}}to-string-base8${{matrix.platform.fext}}"

aarch64-gcc:

runs-on: ubuntu-latest
Expand Down

0 comments on commit 279efaf

Please sign in to comment.