-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Properly set quic tls variable to openssl on windows (#26)
- Loading branch information
1 parent
b8df399
commit c21a590
Showing
2 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,10 @@ on: | |
permissions: read-all | ||
|
||
jobs: | ||
build-linux: | ||
build-linux-openssl: | ||
permissions: | ||
contents: read | ||
name: Build Linux | ||
name: Build Linux (OpenSSL) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Harden Runner | ||
|
@@ -30,7 +30,7 @@ jobs: | |
- name: Upload | ||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 | ||
with: | ||
name: bin-linux | ||
name: bin-linux-openssl | ||
path: | | ||
build/**/*.so | ||
build/**/msh3app | ||
|
@@ -42,10 +42,48 @@ jobs: | |
run: /usr/local/lib/msh3app www.cloudflare.com | ||
- name: GET www.google.com | ||
run: /usr/local/lib/msh3app www.google.com | ||
build-windows: | ||
build-windows-openssl: | ||
permissions: | ||
contents: read | ||
name: Build Windows | ||
name: Build Windows (OpenSSL) | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 | ||
with: | ||
submodules: 'recursive' | ||
- name: Install Perl | ||
uses: shogo82148/[email protected] | ||
with: | ||
perl-version: '5.34' | ||
- name: Install NASM | ||
uses: ilammy/[email protected] | ||
- name: Generate | ||
run: mkdir build && cd build && cmake -G 'Visual Studio 17 2022' -A x64 -DQUIC_TLS=openssl -DMSH3_TOOL=on .. | ||
- name: Build | ||
run: cd build && cmake --build . | ||
- name: Upload | ||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 | ||
with: | ||
name: bin-windows-openssl | ||
path: | | ||
build/**/*.dll | ||
build/**/msh3app.exe | ||
- name: Install | ||
run: cd build && cmake --install . --config Debug | ||
- name: GET outlook.office.com | ||
run: | | ||
& 'C:/Program Files/msh3/lib/msh3app' outlook.office.com | ||
- name: GET www.cloudflare.com | ||
run: | | ||
& 'C:/Program Files/msh3/lib/msh3app' www.cloudflare.com | ||
- name: GET www.google.com | ||
run: | | ||
& 'C:/Program Files/msh3/lib/msh3app' www.google.com | ||
build-windows-schannel: | ||
permissions: | ||
contents: read | ||
name: Build Windows (Schannel) | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout repository | ||
|
@@ -59,7 +97,7 @@ jobs: | |
- name: Upload | ||
uses: actions/upload-artifact@6673cd052c4cd6fcf4b4e6e60ea986c889389535 | ||
with: | ||
name: bin-windows | ||
name: bin-windows-schannel | ||
path: | | ||
build/**/*.dll | ||
build/**/msh3app.exe | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters