Skip to content

Commit

Permalink
Merge pull request #419 from hatoo/ci-vsocks
Browse files Browse the repository at this point in the history
Add CI to vsock feature
  • Loading branch information
hatoo authored Mar 2, 2024
2 parents dc18df8 + a2d2068 commit 1fe5323
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
rust: [stable, beta, nightly]
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
with:
profile: minimal
toolchain: ${{ matrix.rust }}
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
Expand All @@ -29,14 +32,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-14]
rust: [stable, beta, nightly]
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
with:
profile: minimal
toolchain: ${{ matrix.rust }}
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
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 1fe5323

Please sign in to comment.