Skip to content

Commit

Permalink
Update SSL builder versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Apr 19, 2024
1 parent 2c06f8f commit 49b06d2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/breakage-against-ponyc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: LibreSSL 3.x with ponyc main
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3:latest
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.9.1:latest
steps:
- uses: actions/[email protected]
- name: Test
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
name: OpenSSL 3.x with ponyc main
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.2.0:latest
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.3.0:latest
steps:
- uses: actions/[email protected]
- name: Test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: LibreSSL 3.x with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.7.3:release
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-libressl-3.9.1:release
steps:
- uses: actions/[email protected]
- name: Test
Expand All @@ -56,7 +56,7 @@ jobs:
name: OpenSSL 3.x with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.2.0:release
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder-with-openssl_3.3.0:release
steps:
- uses: actions/[email protected]
- name: Test
Expand Down
3 changes: 3 additions & 0 deletions .release-notes/next-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Update to LibreSSL 3.9.1 on Windows

The version of LibreSSL used on Windows was updated to 3.9.1.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ All notable changes to this library will be documented in this file. This projec

### Changed

- - Update to LibreSSL 3.9.1 on Windows ([PR #111](https://github.com/ponylang/net_ssl/pull/111))

## [1.3.2] - 2024-01-14

Expand Down
8 changes: 4 additions & 4 deletions make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function BuildTest
function BuildLibs
{
# When upgrading, change $libreSsl, $libreSslLib, and the copied libs below
$libreSsl = "libressl-3.7.3"
$libreSsl = "libressl-3.9.1"

if (-not ((Test-Path "$rootDir/crypto.lib") -and (Test-Path "$rootDir/ssl.lib")))
{
Expand Down Expand Up @@ -176,9 +176,9 @@ function BuildLibs
}

# copy to the root dir (i.e. PONYPATH) for linking
Copy-Item -Force -Path "$libsDir/lib/ssl-53.lib" -Destination "$rootDir/ssl.lib"
Copy-Item -Force -Path "$libsDir/lib/crypto-50.lib" -Destination "$rootDir/crypto.lib"
Copy-Item -Force -Path "$libsDir/lib/tls-26.lib" -Destination "$rootDir/tls.lib"
Copy-Item -Force -Path "$libsDir/lib/ssl.lib" -Destination "$rootDir/ssl.lib"
Copy-Item -Force -Path "$libsDir/lib/crypto.lib" -Destination "$rootDir/crypto.lib"
Copy-Item -Force -Path "$libsDir/lib/tls.lib" -Destination "$rootDir/tls.lib"
}
}

Expand Down

0 comments on commit 49b06d2

Please sign in to comment.