Skip to content

Commit

Permalink
Add Ci to vsocks feature
Browse files Browse the repository at this point in the history
  • Loading branch information
hatoo committed Mar 2, 2024
1 parent dc18df8 commit 1a7d812
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
rust: [stable, beta, nightly]
rust: [stable]
additional_args: ["", "--no-default-features --features rustls"]
# vsock feature is only on linux
include:
- os: ["ubuntu-latest"]
additional_args: "--features vsock"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand All @@ -29,8 +33,11 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
rust: [stable, beta, nightly]
rust: [stable]
additional_args: ["", "--no-default-features --features rustls"]
include:
- os: ["ubuntu-latest"]
additional_args: "--features vsock"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
/.idea
/.vscode

0 comments on commit 1a7d812

Please sign in to comment.