Skip to content

Commit

Permalink
Workflows: Faster Medium, More comprehesive Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrada committed Mar 7, 2024
1 parent bfe0d24 commit d475368
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/LinuxMediumBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
build_type: [ "release", "debug" ]
build_type: [ "release" ]
use_cxx: [ "clang++-15", "g++-13" ]
use_cpp98: [ "OFF", "ON" ]
use_float: [ "OFF", "ON" ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/MacMediumBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
build_type: [ "release", "debug" ]
build_type: [ "release" ]
use_cpp98: [ "OFF", "ON" ]
use_float: [ "OFF", "ON" ]

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/WindowsMediumBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ jobs:
strategy:
fail-fast: false
matrix:
build_type: [ "release", "debug" ]
platform: [ "x64", "win32" ]
build_type: [ "release" ]
platform: [ "x64" ]
use_cpp98: [ "OFF", "ON" ]
use_float: [ "OFF", "ON" ]

steps:
- uses: actions/checkout@v4
Expand All @@ -30,6 +32,6 @@ jobs:
- name: Building FuzzyLite
shell: cmd
run: |
nmake configure BUILD=${{ matrix.build_type }}
nmake configure BUILD=${{ matrix.build_type }} CPP98=${{ matrix.use_cpp98 }} FLOAT=${{ matrix.use_float }}
nmake build
nmake test

0 comments on commit d475368

Please sign in to comment.