Skip to content

Commit 3aa196b

Browse files
committed
Added: TLSGroupInfo
Added: New Entrypoint to build Added: New NIDs
1 parent 912fa3d commit 3aa196b

File tree

9 files changed

+428
-167
lines changed

9 files changed

+428
-167
lines changed

.github/workflows/libssl.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,21 @@ jobs:
117117
- name: Check MATRIX.md is up-to-date
118118
run: ./admin/matrix.py > MATRIX.md.new && diff -su MATRIX.md MATRIX.md.new
119119

120+
msrv:
121+
name: MSRV
122+
runs-on: ubuntu-latest
123+
steps:
124+
- name: Checkout sources
125+
uses: actions/checkout@v5
126+
with:
127+
persist-credentials: false
128+
- name: Install rust toolchain
129+
uses: dtolnay/rust-toolchain@master
130+
with:
131+
toolchain: 1.88
132+
- name: Check build using MSRV
133+
run: cargo check --locked --lib --all-features
134+
120135
clippy:
121136
name: Clippy
122137
runs-on: ubuntu-latest
@@ -261,7 +276,7 @@ jobs:
261276
make package-${{ matrix.package }} PROFILE=release
262277
263278
- name: Archive package
264-
uses: actions/upload-artifact@v4
279+
uses: actions/upload-artifact@v5
265280
with:
266281
name: ${{ matrix.package }} package built on ${{ matrix.container }} ${{ matrix.version }}
267282
path: target/dist/*.${{ matrix.package }}

0 commit comments

Comments
 (0)