mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 00:22:10 +03:00
Use project ps1 scripts in windows contrib doc
This commit is contained in:
parent
89cc524d17
commit
c17a3f4696
@ -15,18 +15,21 @@ cd c:\
|
||||
Invoke-WebRequest -UseBasicParsing https://aka.ms/vs/17/release/vs_buildtools.exe -Outfile vs_buildtools.exe
|
||||
Start-Process -Wait -PassThru -FilePath .\vs_buildtools.exe -ArgumentList "--addProductLang", "En-us", "--add", "Microsoft.VisualStudio.Workload.VCTools", "--includeRecommended", "--passive", "--norestart", "--nocache", "--wait"
|
||||
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
||||
choco install --confirm --no-progress git nsis python3 winlibs-llvm-free nsis
|
||||
choco install --confirm --no-progress git nsis winlibs-llvm-free nsis
|
||||
choco install --confirm --no-progress python3 --version "3.8.0"
|
||||
Invoke-WebRequest -UseBasicParsing -OutFile "c:\rustup-init.exe" "https://static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe"
|
||||
c:\rustup-init.exe -y --default-toolchain stable-x86_64-pc-windows-msvc
|
||||
Set-ItemProperty -Path HKCU:\Environment -Name RUST_BACKTRACE -Value "full"
|
||||
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
|
||||
git.exe config --global core.autocrlf false
|
||||
git.exe config --global core.eol lf
|
||||
git.exe clone https://github.com/microsoft/vcpkg
|
||||
c:\vcpkg\bootstrap-vcpkg.bat
|
||||
$oldpath = Get-ItemProperty -Path HKCU:\Environment -Name Path
|
||||
$newpath = $oldpath.Path += ";c:\vcpkg"
|
||||
Set-ItemProperty -Path HKCU:\Environment -Name Path -Value $newpath
|
||||
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
|
||||
vcpkg install libxml2:x64-windows curl[openssl]:x64-windows
|
||||
vcpkg install libxml2:x64-windows curl:x64-windows
|
||||
vcpkg integrate install
|
||||
Set-ItemProperty -Path HKCU:\Environment -Name VCPKGRS_DYNAMIC -Value "1"
|
||||
$env:VCPKGRS_DYNAMIC = [System.Environment]::GetEnvironmentVariable("VCPKGRS_DYNAMIC","User")
|
||||
@ -36,92 +39,29 @@ $env:VCPKGRS_DYNAMIC = [System.Environment]::GetEnvironmentVariable("VCPKGRS_DYN
|
||||
|
||||
```powershell
|
||||
cd c:\
|
||||
git.exe config --global core.autocrlf false
|
||||
git.exe clone https://github.com/Orange-OpenSource/hurl
|
||||
```
|
||||
|
||||
# Build win64 exe binary
|
||||
|
||||
```powershell
|
||||
cd c:\hurl
|
||||
cargo build --release --verbose
|
||||
New-Item -ItemType "Directory" -Path c:\hurl\target -Name "win-package"
|
||||
Get-ChildItem -Path c:\hurl\target\release -Recurse -Include *.dll -File | Copy-Item -Destination "c:\hurl\target\win-package"
|
||||
Get-ChildItem -Path c:\hurl\target\release -Recurse -Include hurl*.exe -File | Copy-Item -Destination "c:\hurl\target\win-package"
|
||||
((c:\hurl\target\win-package\hurl.exe --version) -Split " ")[1] > c:\hurl\target\win-package\version.txt
|
||||
$oldpath = Get-ItemProperty -Path HKCU:\Environment -Name Path
|
||||
$newpath = $oldpath.Path += ";c:\hurl\target\win-package"
|
||||
Set-ItemProperty -Path HKCU:\Environment -Name Path -Value $newpath
|
||||
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
|
||||
git.exe clone https://github.com/Orange-OpenSource/hurl.git
|
||||
```
|
||||
|
||||
# Test your app
|
||||
|
||||
install proxy and server
|
||||
|
||||
```powershell
|
||||
pip3 install mitmproxy flask
|
||||
```
|
||||
|
||||
Keep original powershell prompt on background, and open one more separate powershell prompt to launch the server
|
||||
|
||||
```powershell
|
||||
cd c:\hurl\integration
|
||||
python server.py
|
||||
```
|
||||
|
||||
Keep original powershell prompt on background, and open one more separate powershell prompt to launch the ssl server
|
||||
|
||||
```powershell
|
||||
cd c:\hurl\integration
|
||||
python ssl/server.py
|
||||
```
|
||||
|
||||
Keep original powershell prompt on background, and open one more separate powershell prompt to launch the proxy
|
||||
|
||||
```powershell
|
||||
mitmdump --listen-port 8888 --modify-header "/From-Proxy/Hello"
|
||||
```
|
||||
|
||||
focus on original powershell prompt and launch hurl unit tests
|
||||
|
||||
```powershell
|
||||
cd c:\hurl\integration
|
||||
cargo test --features strict --tests
|
||||
```
|
||||
|
||||
launch hurl integration tests
|
||||
|
||||
```powershell
|
||||
cd c:\hurl\integration
|
||||
./integration.py
|
||||
```
|
||||
|
||||
# Generate version.txt file
|
||||
|
||||
```powershell
|
||||
((c:\hurl\target\win-package\hurl.exe --version) -Split " ")[1] > c:\hurl\target\win-package\version.txt
|
||||
cd c:\hurl
|
||||
.\bin\test\test.ps1
|
||||
```
|
||||
|
||||
# Create a simple zip package
|
||||
|
||||
```powershell
|
||||
$hurl_package_version = Get-Content c:\hurl\target\win-package\version.txt
|
||||
cd c:\hurl\target\win-package
|
||||
Get-ChildItem -Path *.dll, *hurl.exe, *hurlfmt.exe, *.txt, ../../*.md -Exclude hex_literal* | Compress-Archive -DestinationPath hurl-${hurl_package_version}-win64.zip
|
||||
cd c:\hurl
|
||||
.\bin\release\release.ps1
|
||||
.\bin\release\create_windows64_zip_package.ps1
|
||||
```
|
||||
|
||||
# Create a package installer for win64
|
||||
|
||||
```powershell
|
||||
cd c:\hurl
|
||||
Get-Command Expand-Archive
|
||||
Expand-Archive -Path .\bin\windows\EnVar_plugin.zip -DestinationPath 'C:\Program Files (x86)\NSIS' -Verbose
|
||||
cd c:\hurl\target\win-package
|
||||
$oldpath = Get-ItemProperty -Path HKCU:\Environment -Name Path
|
||||
$newpath = $oldpath.Path += ";C:\Program Files (x86)\NSIS\Bin"
|
||||
Set-ItemProperty -Path HKCU:\Environment -Name Path -Value $newpath
|
||||
$env:Path = [System.Environment]::GetEnvironmentVariable("Path","Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path","User")
|
||||
makensis.exe /NOCD /V4 ..\..\bin\windows\hurl.nsi
|
||||
.\bin\release\release.ps1
|
||||
.\bin\release\create_windows64_installer.ps1
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user