Skip to content

Commit

Permalink
Revert bump to native-tls
Browse files Browse the repository at this point in the history
This caused the embed ca patch to fail
  • Loading branch information
mxcl committed Feb 14, 2025
1 parent 58038c4 commit e681f59
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 71 deletions.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,13 @@ jobs:
needs: fmt
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os:
- ubuntu-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable

- name: build
Expand Down Expand Up @@ -172,3 +175,15 @@ jobs:
- uses: coverallsapp/github-action@v2
with:
parallel-finished: true

test-minimal-container:
needs: fmt
runs-on: ubuntu-latest
container: debian:buster-slim
steps:
- uses: actions/checkout@v4
- run: apt-get update && apt-get install -y curl make gcc perl
- uses: dtolnay/rust-toolchain@stable
- run: apt-get remove curl ca-certificates openssl --yes
- run: cargo build
- run: ./target/debug/pkgx +git
Loading

0 comments on commit e681f59

Please sign in to comment.