Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/build-natives.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
native/target/x86_64-pc-windows-msvc/${{ env._RUST_BUILD_CONFIG }}/yaha_native.pdb
retention-days: 1
- name: Run tests
shell: bash
run: |
dotnet tool restore
dotnet retest -- -c ${_DOTNET_BUILD_CONFIG} ../test/YetAnotherHttpHandler.Test
Expand Down Expand Up @@ -101,9 +102,10 @@ jobs:
native/target/aarch64-pc-windows-msvc/${{ env._RUST_BUILD_CONFIG }}/yaha_native.pdb
retention-days: 1
#- name: Run tests
# shell: bash
# run: |
# dotnet tool restore
# dotnet retest -- -c ${{ env._DOTNET_BUILD_CONFIG }} ../test/YetAnotherHttpHandler.Test
# dotnet retest -- -c ${_DOTNET_BUILD_CONFIG} ../test/YetAnotherHttpHandler.Test

build-win-arm64-uwp:
name: Build Native library (win-arm64-uwp)
Expand Down Expand Up @@ -137,9 +139,10 @@ jobs:
native/target/aarch64-uwp-windows-msvc/${{ env._RUST_BUILD_CONFIG }}/yaha_native.pdb
retention-days: 1
#- name: Run tests
# shell: bash
# run: |
# dotnet tool restore
# dotnet retest -- -c ${{ env._DOTNET_BUILD_CONFIG }} ../test/YetAnotherHttpHandler.Test
# dotnet retest -- -c ${_DOTNET_BUILD_CONFIG} ../test/YetAnotherHttpHandler.Test

build-linux-x64:
name: Build Native library (linux-x64)
Expand Down Expand Up @@ -298,7 +301,6 @@ jobs:
- run: cargo build --target x86_64-apple-ios --profile ${PROFILE}
env:
PROFILE: ${{ env._RUST_BUILD_CONFIG == 'debug' && 'dev' || env._RUST_BUILD_CONFIG }}
env:
IPHONEOS_DEPLOYMENT_TARGET: 12.0
- uses: Cysharp/Actions/.github/actions/upload-artifact@main
with:
Expand Down
Loading