Skip to content

Commit e681f59

Browse files
committed
Revert bump to native-tls
This caused the embed ca patch to fail
1 parent 58038c4 commit e681f59

File tree

3 files changed

+82
-71
lines changed

3 files changed

+82
-71
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,13 @@ jobs:
8484
needs: fmt
8585
strategy:
8686
matrix:
87-
os: [ubuntu-latest, macos-latest]
87+
os:
88+
- ubuntu-latest
89+
- macos-latest
8890
runs-on: ${{ matrix.os }}
8991
steps:
9092
- uses: actions/checkout@v4
93+
9194
- uses: dtolnay/rust-toolchain@stable
9295

9396
- name: build
@@ -172,3 +175,15 @@ jobs:
172175
- uses: coverallsapp/github-action@v2
173176
with:
174177
parallel-finished: true
178+
179+
test-minimal-container:
180+
needs: fmt
181+
runs-on: ubuntu-latest
182+
container: debian:buster-slim
183+
steps:
184+
- uses: actions/checkout@v4
185+
- run: apt-get update && apt-get install -y curl make gcc perl
186+
- uses: dtolnay/rust-toolchain@stable
187+
- run: apt-get remove curl ca-certificates openssl --yes
188+
- run: cargo build
189+
- run: ./target/debug/pkgx +git

0 commit comments

Comments
 (0)