Skip to content

Commit

Permalink
Fixy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Feb 21, 2025
1 parent 5ba3184 commit 32841a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ jobs:
for FLAVOR in ${FLAVORS}; do
echo "::group::{TYPE=$TYPE FLAVOR=$FLAVOR}"
docker run otp \
"if [ ${TYPE} = \"valgrind\" ]; then sudo apt-get install -y valgrind; fi && \
"if [ ${TYPE} = \"valgrind\" ]; then sudo apt-get install -y valgrind bc; fi && \
make TYPE=$TYPE FLAVOR=$FLAVOR && \
cerl -$TYPE -emu_flavor $FLAVOR -noshell -s init stop"
echo "::endgroup::"
Expand All @@ -416,10 +416,10 @@ jobs:
make && make TYPE=debug &&
cerl -noshell -s init stop && cerl -debug -noshell -s init stop'
- name: Run Erlang with various start options
- name: Start Erlang with various start options
run: |
OPTIONS=("+JPperf true" "+JMsingle true" "+JDdump true")
for OPTION in ${OPTIONS[@]}; do
for OPTION in "${OPTIONS[@]}""; do
docker run otp "erl ${OPTION} -noshell -s init stop"
done
Expand Down

0 comments on commit 32841a7

Please sign in to comment.