-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Description of changes: Add CI test for FreeBSD By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and the ISC license.
- Loading branch information
Showing
6 changed files
with
37 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -445,7 +445,7 @@ jobs: | |
cd $(pwd) | ||
export PATH="${HOME}/bin:${PATH}" | ||
env | ||
tests/ci/run_openbsd_tests.sh ${{ matrix.args }} | ||
tests/ci/run_bsd_tests.sh ${{ matrix.args }} | ||
EOF | ||
gcc-4_8: | ||
needs: [sanity-test-run] | ||
|
@@ -490,3 +490,35 @@ jobs: | |
# echo ${env:SDEROOT} | ||
# .\tests\ci\run_windows_tests.bat "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86 true | ||
# | ||
freebsd-13: | ||
if: github.repository_owner == 'aws' | ||
needs: [sanity-test-run] | ||
name: FreeBSD ${{ matrix.version }} test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- '13.3' | ||
- '14.1' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- name: Prepare VM | ||
uses: cross-platform-actions/[email protected] | ||
env: | ||
AWS_LC_SSL_TEST_RUNNER_PEEK_ROUNDS: 5 | ||
AWS_LC_GO_TEST_TIMEOUT: 90m | ||
GOFLAGS: "-buildvcs=false" | ||
with: | ||
environment_variables: 'AWS_LC_SSL_TEST_RUNNER_PEEK_ROUNDS AWS_LC_GO_TEST_TIMEOUT GOFLAGS' | ||
operating_system: freebsd | ||
architecture: x86-64 | ||
version: ${{ matrix.version }} | ||
shell: bash | ||
memory: 16G | ||
cpu_count: 4 | ||
run: | | ||
sudo pkg install -y git gmake cmake go ninja | ||
tests/ci/run_bsd_tests.sh |
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
File renamed without changes.