Skip to content

Commit

Permalink
fixed build mu3 mode on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkorsukov committed Nov 11, 2020
1 parent e7d3df7 commit 3ec3016
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ jobs:
if: env.DO_BUILD == 'true'
run: |
T_ID=${{ secrets.TELEMETRY_TRACK_ID }}; if [ -z "$T_ID" ]; then T_ID="''"; fi
sudo bash ./build/ci/linux/build.sh -n ${{ github.run_id }} --telemetry $T_ID
if [ "$BUILD_MODE" != "nightly_build" ]; then MU4_BUILD_OPT="--build_mu4 OFF"; fi
sudo bash ./build/ci/linux/build.sh -n ${{ github.run_id }} --telemetry $T_ID $MU4_BUILD_OPT
- name: Package
if: env.DO_BUILD == 'true'
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jobs:
if: env.DO_BUILD == 'true'
run: |
T_ID=${{ secrets.TELEMETRY_TRACK_ID }}; if [ -z "$T_ID" ]; then T_ID="''"; fi
bash ./build/ci/macos/build.sh -n ${{ github.run_id }} --telemetry $T_ID
if [ "$BUILD_MODE" != "nightly_build" ]; then MU4_BUILD_OPT="--build_mu4 OFF"; fi
bash ./build/ci/macos/build.sh -n ${{ github.run_id }} --telemetry $T_ID $MU4_BUILD_OPT
- name: Package
if: env.DO_BUILD == 'true'
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ jobs:
run: |
IF ${{ secrets.TELEMETRY_TRACK_ID != 0 }} == true ( SET T_ID=${{ secrets.TELEMETRY_TRACK_ID }} ) ELSE ( SET T_ID="''" )
IF ${{ secrets.CRASH_LOG_SERVER_URL != 0 }} == true ( SET C_URL=${{ secrets.CRASH_LOG_SERVER_URL }} ) ELSE ( SET C_URL="''" )
build\ci\windows\build.bat -n ${{ github.run_id }} --telemetry %T_ID% --crashurl %C_URL%
IF "%BUILD_MODE%"" != "nightly_build" (SET MU4_BUILD_OPT="--build_mu4 OFF" )
build\ci\windows\build.bat -n ${{ github.run_id }} --telemetry %T_ID% --crashurl %C_URL% %MU4_BUILD_OPT%
- name: Package
if: env.DO_BUILD == 'true'
shell: cmd
Expand Down

0 comments on commit 3ec3016

Please sign in to comment.