Skip to content

Commit

Permalink
Updated windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fszewczyk committed Nov 8, 2023
1 parent e29b694 commit f8cdead
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
env:
CXX: ${{matrix.conf.compiler}}
run: |
g++ examples/scalars.cpp -O3 --std=c++17
./a.out
g++ examples/xor_classification.cpp --std=c++17
./a.out
g++ examples/xor_regression.cpp --std=c++17
./a.out
g++ examples/scalars.cpp -O3 --std=c++17 -o out.exe
out.exe
g++ examples/xor_classification.cpp --std=c++17 -o out.exe
out.exe
g++ examples/xor_regression.cpp --std=c++17 -o out.exe
out.exe

0 comments on commit f8cdead

Please sign in to comment.