Skip to content

Commit

Permalink
1.5-dev: Fix another silly GHA test issue
Browse files Browse the repository at this point in the history
  • Loading branch information
algofoogle committed May 31, 2024
1 parent 4b62f73 commit e98fff7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ jobs:
ls -al
cd test
mkdir frames_out/png
./animate.sh ./frames_out/png && cd ./frames_out/png && tar xzf ../frames.tgz *.png
cd frames_out
../animate.sh png && cd png && tar czf ../frames.tgz *.png
- name: Store PNGs and MP4
if: success() || failure()
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
ls -al
cd test
mkdir frames_out/png
./animate.sh ./frames_out/png && cd ./frames_out/png && tar xzf ../frames.tgz *.png
cd frames_out
../animate.sh png && cd png && tar czf ../frames.tgz *.png
- name: Store PNGs and MP4
if: success() || failure()
Expand Down
4 changes: 2 additions & 2 deletions test/animate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ case "$1" in

*)
# Convert PPM sequence to PNG sequence in $1 dir:
pushd frames_out
# pushd frames_out
for f in rbz_basic_frame-???.ppm; do
echo $f
convert $f "$1"/$f.png
done
popd
# popd
;;
esac

0 comments on commit e98fff7

Please sign in to comment.