File tree 2 files changed +14
-6
lines changed
2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,20 @@ jobs:
40
40
timeoutInMinutes : 360
41
41
42
42
steps :
43
+ - powershell : |
44
+ (New-Object Net.WebClient).DownloadFile("https://github.com/msys2/msys2-installer/releases/download/2020-06-02/msys2-base-x86_64-20200602.sfx.exe", "sfx.exe")
45
+ .\sfx.exe -y -o\
46
+ del sfx.exe
47
+ displayName: Download/Extract/Install MSYS2
43
48
- script : |
44
- git clone https://github.com/msys2/msys2-ci-base.git %CD:~0,2%\msys64
45
- %CD:~0,2%\msys64\usr\bin\rm -rf %CD:~0,2%\msys64\.git
46
- set PATH=%CD:~0,2%\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
47
- %CD:~0,2%\msys64\usr\bin\pacman --noconfirm -Syyuu
48
- displayName: Install and Update MSYS2
49
+ @REM install updated filesystem package first without dependency checking
50
+ @REM because of: https://github.com/msys2/MSYS2-packages/issues/2021
51
+ %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Sydd filesystem"
52
+ displayName: Workaround filesystem dash MSYS2 dependency issue
53
+ - script : |
54
+ %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
55
+ %CD:~0,2%\msys64\usr\bin\bash -lc "pacman --noconfirm -Syuu"
56
+ displayName: Update MSYS2
49
57
- task : DownloadSecureFile@1
50
58
inputs :
51
59
secureFile : s3cfg
Original file line number Diff line number Diff line change 4
4
set -e
5
5
6
6
pacman -Su --needed --noconfirm
7
- pacman -S --needed --noconfirm wget p7zip python3-pip
7
+ pacman -S --needed --noconfirm wget p7zip python3-pip tar xz
8
8
pip install s3cmd
9
9
wget -nv " https://ziglang.org/deps/llvm%2bclang%2blld-10.0.0-x86_64-windows-msvc-release-mt.tar.xz"
10
10
tar xf llvm+clang+lld-10.0.0-x86_64-windows-msvc-release-mt.tar.xz
You can’t perform that action at this time.
0 commit comments