Skip to content

Commit

Permalink
Don't set continue-on-error, it's harmful.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Jun 16, 2024
1 parent 8bcabfc commit f6d3ad4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/rtp.io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
build:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
continue-on-error: true
env:
COMPILER: ${{ matrix.compiler }}
BUILD_OS: ${{ matrix.os }}
Expand Down Expand Up @@ -82,7 +81,6 @@ jobs:
runs-on: ubuntu-latest
container:
image: sippylabs/rtpproxy:latest
continue-on-error: true
env:
COMPILER: clang-15
BUILD_OS: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/do_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ then
fi

MAKE_ENV="CC_EXTRA_OPTS=${CC_EXTRA_OPTS:-"-Werror"} FASTER=1 NICER=0"
MAKE_CMD="${MAKE_ENV} make"
MAKE_CMD="env ${MAKE_ENV} make"

if [ ! -z "${ONE_MODULE}" ]
then
Expand Down

0 comments on commit f6d3ad4

Please sign in to comment.