Skip to content

Commit f5933d0

Browse files
ci.yml: Test MSRV (1.66.0) builds
Set the MSRV to 1.66.0 to be compatible with the current Parsec MSRV. Test building the provider with MSRV. Signed-off-by: Tomás González <tomasagustin.gonzalezorlando@arm.com>
1 parent 4559891 commit f5933d0

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,18 @@ jobs:
4242
with:
4343
ci-flags: "build-and-test"
4444

45+
build-msrv:
46+
name: MSRV - Build Parsec OpenSSL Provider
47+
runs-on: ubuntu-latest
48+
if: ${{ always() }}
49+
needs: [build-and-export-test-docker]
50+
steps:
51+
- uses: actions/checkout@v3
52+
- name: Run the container to execute the test script
53+
uses: ./.github/actions/ci_script
54+
with:
55+
ci-flags: "build"
56+
4557
static-checks:
4658
name: Run static checks
4759
runs-on: ubuntu-latest

ci.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Continuous Integration test script
1111
1212
Usage: ./ci.sh --TEST
1313
where TEST can be one of:
14+
--build
1415
--build-and-test
1516
--static-checks
1617
"
@@ -46,6 +47,9 @@ STATIC_CHECKS="False"
4647

4748
while [ "$#" -gt 0 ]; do
4849
case "$1" in
50+
--build )
51+
BUILD="True"
52+
;;
4953
--build-and-test )
5054
BUILD="True"
5155
TEST="True"

0 commit comments

Comments
 (0)