Skip to content

Commit

Permalink
fixed windows 3.x nightly build on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkorsukov committed Nov 10, 2020
1 parent 590eea7 commit 9740abf
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jobs:
run: |
bash ./build/ci/tools/make_build_mode_env.sh -e ${{ github.event_name }} -m ${{ github.event.inputs.build_mode }}
BUILD_MODE=$(cat ./build.artifacts/env/build_mode.env)
echo "BUILD_MODE=$BUILD_MODE" >> $GITHUB_ENV
DO_PUBLISH='false'
if [[ "${{ github.event.inputs.publish }}" == "on" || "$BUILD_MODE" == "nightly_build" ]]; then
Expand All @@ -52,15 +51,12 @@ jobs:
DO_PUBLISH='false'
fi
fi
echo "DO_PUBLISH=$DO_PUBLISH" >> $GITHUB_ENV
DO_CHECKSUM='true'
if [ "$BUILD_MODE" == "devel_build" ]; then DO_CHECKSUM='false'; fi
echo "DO_CHECKSUM=$DO_CHECKSUM" >> $GITHUB_ENV
DO_APPCAST='true'
if [ "$BUILD_MODE" == "devel_build" ]; then DO_APPCAST='false'; fi
echo "DO_APPCAST=$DO_APPCAST" >> $GITHUB_ENV
DO_BUILD='true'
if [ "$BUILD_MODE" == "nightly_build" ]; then
Expand All @@ -73,10 +69,15 @@ jobs:
fi
echo "github.repository: ${{ github.repository }}"
echo "BUILD_MODE=$BUILD_MODE" >> $GITHUB_ENV
echo "BUILD_MODE: $BUILD_MODE"
echo "DO_BUILD=$DO_BUILD" >> $GITHUB_ENV
echo "DO_BUILD: $DO_BUILD"
echo "DO_PUBLISH=$DO_PUBLISH" >> $GITHUB_ENV
echo "DO_PUBLISH: $DO_PUBLISH"
echo "DO_CHECKSUM=$DO_CHECKSUM" >> $GITHUB_ENV
echo "DO_CHECKSUM: $DO_CHECKSUM"
echo "DO_APPCAST=$DO_APPCAST" >> $GITHUB_ENV
echo "DO_APPCAST: $DO_APPCAST"
- name: Setup environment
Expand Down

0 comments on commit 9740abf

Please sign in to comment.