Skip to content

Commit

Permalink
Merge 17bb34c into 03aaef8
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster committed Mar 18, 2022
2 parents 03aaef8 + 17bb34c commit 19545dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
- name: Install Scoop & Binaries
run : |
[Net.ServicePointManager]::SecurityProtocol =[Net.SecurityProtocolType]::Tls12 ;
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh');
(New-Object System.Net.WebClient).DownloadFile('https://get.scoop.sh', "install_scoop.ps1");
.\install_scoop.ps1 -RunAsAdmin
scoop install curl wget cmake unzip make;
- name: Install wixtoolset
Expand Down
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ install:
ls "C:\local\boost_1_68_0"
# Install Scoop
iwr -useb get.scoop.sh | iex
iwr -useb get.scoop.sh -outfile 'install_scoop.ps1'
.\install_scoop.ps1 -RunAsAdmin
# Install Git & other tools
powershell.exe scoop install git wget cmake openssh unzip make sed cat
scoop install git wget cmake openssh unzip make sed cat
configuration: Release
build_script:
Expand Down

0 comments on commit 19545dd

Please sign in to comment.