Skip to content

Commit

Permalink
fix(ci): service msrv 1.80, rust msrv 1.80, lib msrv 1.75
Browse files Browse the repository at this point in the history
  • Loading branch information
zonyitoo committed Nov 28, 2024
1 parent 103e060 commit 946fd2d
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 6 deletions.
54 changes: 50 additions & 4 deletions .github/workflows/build-msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
RUST_LOG: "trace"

jobs:
buid-test-check:
shadowsocks-rust:
strategy:
matrix:
platform:
Expand All @@ -28,12 +28,58 @@ jobs:
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install 1.75
rustup default 1.75
rustup override set 1.75
rustup toolchain install 1.80
rustup default 1.80
rustup override set 1.80
- name: Build with All Features Enabled (Unix)
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
run: cargo build --verbose --features "full-extra local-flow-stat utility-url-outline"
- name: Build with All Features Enabled (Windows)
if: ${{ runner.os == 'Windows' }}
run: cargo build --verbose --features "full-extra local-flow-stat utility-url-outline winservice"

shadowsocks-service:
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- if: ${{ runner.os == 'Windows' }}
uses: ilammy/setup-nasm@v1
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install 1.80
rustup default 1.80
rustup override set 1.80
- name: Build with All Features Enabled
run: cargo build --manifest-path crates/shadowsocks-service/Cargo.toml --verbose --features "full dns-over-tls dns-over-https dns-over-h3 local-dns local-flow-stat local-http-rustls local-tun local-fake-dns local-online-config stream-cipher aead-cipher-extra aead-cipher-2022 aead-cipher-2022-extra security-replay-attack-detect"

shadowsocks:
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- if: ${{ runner.os == 'Windows' }}
uses: ilammy/setup-nasm@v1
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install 1.75
rustup default 1.75
rustup override set 1.75
- name: Build with All Features Enabled
run: cargo build --manifest-path crates/shadowsocks/Cargo.toml --verbose --features "stream-cipher aead-cipher-extra aead-cipher-2022 aead-cipher-2022-extra security-replay-attack-detect"
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation = "https://docs.rs/shadowsocks-rust"
keywords = ["shadowsocks", "proxy", "socks", "socks5", "firewall"]
license = "MIT"
edition = "2021"
rust-version = "1.75"
rust-version = "1.80"

[badges]
maintenance = { status = "passively-maintained" }
Expand Down
2 changes: 1 addition & 1 deletion crates/shadowsocks-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation = "https://docs.rs/shadowsocks-service"
keywords = ["shadowsocks", "proxy", "socks", "socks5", "firewall"]
license = "MIT"
edition = "2021"
rust-version = "1.75"
rust-version = "1.80"

[badges]
maintenance = { status = "passively-maintained" }
Expand Down

0 comments on commit 946fd2d

Please sign in to comment.