-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
1,774 additions
and
1,354 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 |
---|---|---|
|
@@ -281,18 +281,23 @@ jobs: | |
- name: Build SSL | ||
run: cmake --build ./build --target ssl | ||
|
||
clang-18-pedantic: | ||
clang-19-pedantic: | ||
if: github.repository_owner == 'aws' | ||
needs: [ sanity-test-run ] | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install clang-19 | ||
run: | | ||
wget https://apt.llvm.org/llvm.sh | ||
chmod u+x llvm.sh | ||
sudo ./llvm.sh 19 | ||
- name: Setup CMake | ||
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: clang-18 | ||
cxx-compiler: clang++-18 | ||
c-compiler: clang-19 | ||
cxx-compiler: clang++-19 | ||
options: CMAKE_BUILD_TYPE=Release CMAKE_C_FLAGS=-pedantic CMAKE_CXX_FLAGS=-pedantic | ||
- name: Build Crypto | ||
run: cmake --build ./build --target crypto | ||
|
@@ -392,6 +397,38 @@ jobs: | |
- name: Run tests | ||
run: cmake --build ./build --target run_tests | ||
|
||
clang-19-sanity: | ||
if: github.repository_owner == 'aws' | ||
needs: [ sanity-test-run ] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
fips: | ||
- "0" | ||
- "1" | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: '>=1.18' | ||
- name: Install clang-19 | ||
run: | | ||
wget https://apt.llvm.org/llvm.sh | ||
chmod u+x llvm.sh | ||
sudo ./llvm.sh 19 | ||
- name: Setup CMake | ||
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: clang-19 | ||
cxx-compiler: clang++-19 | ||
options: FIPS=${{ matrix.fips }} CMAKE_BUILD_TYPE=Release | ||
- name: Build Project | ||
run: cmake --build ./build --target all | ||
- name: Run tests | ||
run: cmake --build ./build --target run_tests | ||
|
||
OpenBSD-x86-64: | ||
needs: [sanity-test-run] | ||
runs-on: ubuntu-latest | ||
|
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
Oops, something went wrong.