Skip to content

Commit

Permalink
fix incorrect os flag
Browse files Browse the repository at this point in the history
  • Loading branch information
fangq committed Oct 22, 2023
1 parent c79f969 commit 941236b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
fi
octave-cli --eval "addpath(pwd);cd test;run_zmat_test;cd ../example;demo_zmat_basic;zmat_speedbench"
- name: Run octave test
if: ${{ runner.os != 'Linux' }}
if: ${{ runner.os == 'Linux' }}
run: |
octave-cli --version
valgrind octave-cli --eval "addpath(pwd);cd test;run_zmat_test;cd ../example;demo_zmat_basic;zmat_speedbench"
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

== ZMAT 0.9.9 (Foxy the Fantastic Mr. Fox - RC1), FangQ <q.fang (a) neu.edu> ==

2023-10-22 [c79f969] use valgrind to test memory error on Linux,run example scripts
2023-10-22 [48ba900] fix memory error using valgrind, run full tests on all OS
2023-10-13 [d5b2c40] revert blosc2 to v2.8.0 to remove new dependency libdl
2023-10-13 [f2eadb5] fix broken test
Expand Down

0 comments on commit 941236b

Please sign in to comment.