Make the daemon aware if ipv4 and/or ipv6 is available #637
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
--- | |
name: iOS - Build and test Rust FFI (mullvad-ios) | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/ios-rust-ffi.yml | |
- clippy.toml | |
- '**/*.rs' | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
build-ios: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
target: [aarch64-apple-ios, aarch64-apple-ios-sim] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Rust | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
default: true | |
- name: Build and test crates | |
shell: bash | |
env: | |
RUSTFLAGS: --deny warnings | |
# NOTE: Tests actually target macOS here. This is because we do not have an iOS runner | |
# handy. | |
run: | | |
source env.sh | |
time cargo build --locked --verbose --lib -p mullvad-ios --target ${{ matrix.target }} | |
time cargo test --locked --verbose --lib -p mullvad-ios | |
clippy-check-ios: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
target: [aarch64-apple-ios, aarch64-apple-ios-sim] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Rust | |
uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
target: ${{ matrix.target }} | |
default: true | |
- name: Clippy check | |
shell: bash | |
env: | |
RUSTFLAGS: --deny warnings | |
run: | | |
source env.sh | |
time cargo clippy --locked --all-targets --no-default-features -p mullvad-ios --target ${{ matrix.target }} | |
time cargo clippy --locked --all-targets --all-features -p mullvad-ios --target ${{ matrix.target }} |