Skip to content

Commit

Permalink
Some debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Oct 28, 2024
1 parent 142d581 commit 75c6a60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/make-alpine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,9 @@ jobs:
run: |
unset CC
unset CXX
IFS=':' read -r -a packages <<< "${PACKAGE_NAMES}"
for package in "${packages[@]}"; do
IFS=:
for package in "${PACKAGE_NAMES}"; do
printf " \033[0;32m==>\033[0m Octave package \033[0;32m${lib}\033[0m\n"
echo "::group::Install ${package}"
octave --eval "pkg install -verbose -forge ${package}"
echo "::endgroup::"
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/make-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ jobs:
export PATH=$(echo "$PATH" | sed -e "s|$MINGW_PREFIX/lib/ccache/bin:||g")
export PATH="/c/octave/pkg/${{ matrix.mingw-prefix }}/bin:$PATH"
cd examples/code
mkoctfile --link-stand-alone embedded.cc -o embedded
mkoctfile --link-stand-alone --verbose embedded.cc -o embedded
./embedded.exe
- name: test Octave packages
Expand All @@ -257,8 +257,11 @@ jobs:
unset CXX
export PATH=$(echo "$PATH" | sed -e "s|$MINGW_PREFIX/lib/ccache/bin:||g")
export PATH="/c/octave/pkg/${{ matrix.mingw-prefix }}/bin:$PATH"
mkoctfile -p OCTAVE_EXEC_HOME
mkoctfile -p OCTLIBDIR
IFS=':' read -r -a packages <<< "${PACKAGE_NAMES}"
for package in "${packages[@]}"; do
printf " \033[0;32m==>\033[0m Octave package \033[0;32m${lib}\033[0m\n"
echo "::group::Install ${package}"
octave --eval "pkg install -verbose -forge ${package}"
echo "::endgroup::"
Expand Down

0 comments on commit 75c6a60

Please sign in to comment.