We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aefe840 commit ff138b0Copy full SHA for ff138b0
1 file changed
.github/workflows/ci.yml
@@ -38,16 +38,7 @@ jobs:
38
39
- name: Download WTL and nlohmann/json
40
run: |
41
- $ProgressPreference = 'SilentlyContinue'
42
- $headers = @{
43
- "User-Agent" = "Wget/1.21.1"
44
- "Accept" = "*/*"
45
- }
46
- Invoke-WebRequest `
47
- -Uri "https://sourceforge.net/projects/wtl/files/WTL%2010/WTL%2010.01%20Release/WTL10_01_Release.zip/download" `
48
- -Headers $headers `
49
- -OutFile "${{ runner.temp }}\wtl.zip"
50
- 7z x "${{ runner.temp }}\wtl.zip" -o"lib\WTL" > nul
+ git clone https://git.code.sf.net/p/wtl/git lib\WTL
51
52
New-Item -ItemType Directory -Force -Path "lib\nlohmann"
53
(New-Object System.Net.WebClient).DownloadFile("https://github.com/nlohmann/json/releases/download/v3.12.0/json.hpp", "lib\nlohmann\json.hpp")
0 commit comments