Skip to content

Commit

Permalink
build, refactor: remove SLOW_DCHECKS option.
Browse files Browse the repository at this point in the history
  • Loading branch information
xicilion committed Jan 13, 2023
1 parent e7ef8fe commit e36cc83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.sh
Expand Up @@ -10,10 +10,10 @@ if [[ "$TARGET_OS" != 'Windows' ]]; then
TARGET_OS=`uname`
if [[ "$BUILD_TARGET" != "" ]]; then
CUR=`pwd`
docker run -t --rm -e USE_VENDER_DIST -e CI=${CI} -v ${CUR}:/fibjs fibjs/${BUILD_TARGET}-build-env:${TARGET_ARCH} bash -c "cd /fibjs; bash build -j2 ${TARGET_ARCH} ${BUILD_TYPE} ci"
docker run -t --rm -e USE_VENDER_DIST -v ${CUR}:/fibjs fibjs/${BUILD_TARGET}-build-env:${TARGET_ARCH} bash -c "cd /fibjs; bash build -j2 ${TARGET_ARCH} ${BUILD_TYPE} ci"
elif [[ "$TARGET_OS" == "Linux" ]]; then
CUR=`pwd`
docker run -t --rm -e USE_VENDER_DIST -e CI=${CI} -v ${CUR}:/fibjs fibjs/linux-build-env:${TARGET_ARCH} bash -c "cd /fibjs; bash build -j2 ${TARGET_ARCH} ${BUILD_TYPE} ci"
docker run -t --rm -e USE_VENDER_DIST -v ${CUR}:/fibjs fibjs/linux-build-env:${TARGET_ARCH} bash -c "cd /fibjs; bash build -j2 ${TARGET_ARCH} ${BUILD_TYPE} ci"
else
bash build -j2 ${TARGET_ARCH} ${BUILD_TYPE} ci
fi
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -155,7 +155,6 @@ jobs:
DIST_ARCH: ${{ steps.set-env-vars.outputs.DIST_ARCH }}
DIST_DIR: ${{ steps.set-env-vars.outputs.DIST_DIR }}
RELEASE_TAG: ${{ steps.set-env-vars.outputs.RELEASE_TAG }}
CI: 'ci'

- name: Prepare Release on Windows
if: runner.os == 'Windows'
Expand Down
2 changes: 1 addition & 1 deletion vender

0 comments on commit e36cc83

Please sign in to comment.