feat(local): basic support of macOS launchd activate socket #2345
Workflow file for this run
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: Build & Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_LOG: "trace" | |
jobs: | |
buid-test-check: | |
strategy: | |
matrix: | |
platform: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install Rust | |
run: | | |
rustup set profile minimal | |
rustup toolchain install stable | |
rustup default stable | |
rustup override set stable | |
- name: Build & Test (Default) | |
run: cargo test --verbose --no-fail-fast | |
- name: Build & Test (Default) - shadowsocks | |
run: cargo test --manifest-path ./crates/shadowsocks/Cargo.toml --verbose --no-fail-fast | |
- name: Build & Test (--no-default-features) | |
run: cargo test --verbose --no-default-features --no-fail-fast | |
- name: Build & Test (--no-default-features) - shadowsocks | |
run: cargo test --manifest-path ./crates/shadowsocks/Cargo.toml --verbose --no-default-features --no-fail-fast | |
- name: Build with All Features Enabled (Unix) | |
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }} | |
run: cargo build --verbose --features "local-http-rustls local-redir local-dns local-tun dns-over-tls dns-over-https stream-cipher aead-cipher-2022" | |
- name: Build with All Features Enabled (Windows) | |
if: ${{ runner.os == 'Windows' }} | |
run: cargo build --verbose --features "local-http-rustls local-dns dns-over-tls dns-over-https stream-cipher aead-cipher-2022" | |
- name: Build with All Features Enabled - shadowsocks | |
run: cargo build --manifest-path ./crates/shadowsocks/Cargo.toml --verbose --features "stream-cipher aead-cipher-2022" |