8000 build, refactor: remove unnecessary environment variable in build.yml. · fibjs/fibjs@b12e600 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit b12e600

Browse files
committed
build, refactor: remove unnecessary environment variable in build.yml.
1 parent 6b37d5b commit b12e600

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ set -ev
22

33
if [[ "${HOST_OS}" == "Linux" ]]; then
44
CUR=$(pwd)
5-
docker run -t --rm -e USE_VENDER_DIST -v ${CUR}:${CUR} fibjs/${BUILD_TARGET}-build-env:${BUILD_ARCH} \
5+
docker run -t --rm -v ${CUR}:${CUR} fibjs/${BUILD_TARGET}-build-env:${BUILD_ARCH} \
66
bash -c "cd ${CUR}; git config --global --add safe.directory ${CUR}; bash build -j2 ${BUILD_ARCH} ${BUILD_TYPE} ci"
77
else
88
bash build -j2 ${BUILD_ARCH} ${BUILD_TARGET} ${BUILD_TYPE} ci

.github/workflows/build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ on:
2323
# # Only use the types keyword to narrow down the activity types that will trigger your workflow.
2424
# types: [published, created, edited]
2525

26-
env:
27-
USE_VENDER_DIST: 1
28-
2926
jobs:
3027
build:
3128
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)
0