-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [openssl3] update to 3.1.3 * ci: create ubuntu22, build openssl3 * gh-actions: update ubuntu workflow * gh-actions: update ubuntu workflow * [openssl3] update baseline
- Loading branch information
Showing
8 changed files
with
105 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: "Ubuntu" | ||
|
||
on: [push, workflow_dispatch] | ||
|
||
env: | ||
VCPKG_FEATURE_FLAGS: "registries,binarycaching,manifests,versions" | ||
|
||
jobs: | ||
ubuntu22: | ||
runs-on: "ubuntu-22.04" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
triplet: [x64-linux] | ||
env: | ||
VCPKG_OVERLAY_PORTS: "${{ github.workspace }}/ports" | ||
VCPKG_OVERLAY_TRIPLETS: ${{ github.workspace }}/triplets | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "create cache folders" | ||
run: | | ||
mkdir -p ${VCPKG_DOWNLOADS} | ||
mkdir -p ${VCPKG_DEFAULT_BINARY_CACHE} | ||
env: | ||
VCPKG_DOWNLOADS: "${{ runner.temp }}/vcpkg-downloads" | ||
VCPKG_DEFAULT_BINARY_CACHE: "${{ runner.temp }}/vcpkg-archives" | ||
- uses: actions/cache@v3 | ||
with: | ||
key: "v2339-${{ runner.os }}-${{ matrix.triplet }}" | ||
path: | | ||
${{ runner.temp }}/vcpkg-downloads | ||
${{ runner.temp }}/vcpkg-archives | ||
- uses: ConorMacBride/install-package@v1 | ||
with: | ||
apt: nuget nasm libnuma-dev libopenmpi-dev libx11-dev libxi-dev libxext-dev libx11-xcb-dev | ||
- uses: lukka/run-vcpkg@v11 | ||
with: | ||
vcpkgDirectory: "/usr/local/share/vcpkg" # see VCPKG_INSTALLATION_ROOT | ||
doNotUpdateVcpkg: true | ||
vcpkgGitCommitId: 5a38b5ec0eee3d1a1a6faab5e944617fee2697cf # check https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2204-Readme.md | ||
vcpkgJsonGlob: "test/vcpkg.json" | ||
runVcpkgInstall: true | ||
runVcpkgFormatString: '[`install`, `--clean-buildtrees-after-build`, `--clean-packages-after-build`, `--triplet`, `$[env.VCPKG_DEFAULT_TRIPLET]`]' | ||
env: | ||
VCPKG_DEFAULT_TRIPLET: "${{ matrix.triplet }}" | ||
VCPKG_DOWNLOADS: "${{ runner.temp }}/vcpkg-downloads" | ||
VCPKG_DEFAULT_BINARY_CACHE: "${{ runner.temp }}/vcpkg-archives" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters