Skip to content

Commit

Permalink
Mute output from wget and unzip (#1512)
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Oct 16, 2020
1 parent 9cfa019 commit cf69920
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ install:
- cmd: if "%platform%"=="x64" set VCPKG_ARCH=x64-windows
- cmd: mkdir -p C:\dartsim
- cmd: choco install -y wget
- cmd: wget https://github.com/dartsim/vcpkg-build/releases/download/%VCPKG_BUILD_TAG%/vcpkg-dartsim-dependencies.zip
- cmd: unzip vcpkg-dartsim-dependencies.zip -d C:/dartsim
- cmd: wget -q https://github.com/dartsim/vcpkg-build/releases/download/%VCPKG_BUILD_TAG%/vcpkg-dartsim-dependencies.zip
- cmd: unzip -qq vcpkg-dartsim-dependencies.zip -d C:\dartsim
- cmd: cd "%APPVEYOR_BUILD_FOLDER%"

#-------------------------------
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,16 @@ jobs:
BUILD_TYPE: Release
RUN_TESTS: OFF
VCPKG_ROOT: 'C:/dartsim/vcpkg'
VCPKG_BUILD_TAG: v0.1.1
VCPKG_BUILD_TAG: v0.2.0-70f192e
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
shell: cmd
run: |
mkdir -p C:/dartsim
mkdir -p C:\dartsim
choco install -y wget
wget https://github.com/dartsim/vcpkg-build/releases/download/%VCPKG_BUILD_TAG%/vcpkg-dartsim-dependencies.zip
unzip vcpkg-dartsim-dependencies.zip -d C:/dartsim
wget -q https://github.com/dartsim/vcpkg-build/releases/download/%VCPKG_BUILD_TAG%/vcpkg-dartsim-dependencies.zip
unzip -qq vcpkg-dartsim-dependencies.zip -d C:\dartsim
- name: Build
shell: cmd
run: |
Expand All @@ -219,10 +219,10 @@ jobs:
- name: Install Dependencies
shell: cmd
run: |
mkdir -p C:/dartsim
mkdir -p C:\dartsim
choco install -y wget
wget https://github.com/dartsim/vcpkg-build/releases/download/%VCPKG_BUILD_TAG%/vcpkg-dartsim-dependencies.zip
unzip vcpkg-dartsim-dependencies.zip -d C:/dartsim
wget -q https://github.com/dartsim/vcpkg-build/releases/download/%VCPKG_BUILD_TAG%/vcpkg-dartsim-dependencies.zip
unzip -qq vcpkg-dartsim-dependencies.zip -d C:\dartsim
- name: Build
shell: cmd
run: |
Expand Down

0 comments on commit cf69920

Please sign in to comment.