-
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
57 changed files
with
1,432 additions
and
588 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 |
---|---|---|
|
@@ -255,17 +255,57 @@ jobs: | |
cxx-compiler: g++-${{ matrix.gccversion }} | ||
options: FIPS=${{ matrix.fips }} CMAKE_BUILD_TYPE=Release | ||
- name: Build Project | ||
# TODO: Re-enable gcc-14/FIPS build once delocator updated | ||
if: ${{ !( matrix.gccversion == '14' && matrix.fips == '1' ) }} | ||
run: cmake --build ./build --target all | ||
- name: Run tests | ||
# TODO: Re-enable gcc-14/FIPS build once delocator updated | ||
if: ${{ !( matrix.gccversion == '14' && matrix.fips == '1' ) }} | ||
run: cmake --build ./build --target run_tests | ||
|
||
gcc-13-pedantic: | ||
if: github.repository_owner == 'aws' | ||
needs: [ sanity-test-run ] | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup CMake | ||
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: gcc-13 | ||
cxx-compiler: g++-13 | ||
options: CMAKE_BUILD_TYPE=Release CMAKE_C_FLAGS=-pedantic CMAKE_CXX_FLAGS=-pedantic | ||
- name: Build Crypto | ||
run: cmake --build ./build --target crypto | ||
- name: Build SSL | ||
run: cmake --build ./build --target ssl | ||
|
||
clang-18-pedantic: | ||
if: github.repository_owner == 'aws' | ||
needs: [ sanity-test-run ] | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup CMake | ||
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: clang-18 | ||
cxx-compiler: clang++-18 | ||
options: CMAKE_BUILD_TYPE=Release CMAKE_C_FLAGS=-pedantic CMAKE_CXX_FLAGS=-pedantic | ||
- name: Build Crypto | ||
run: cmake --build ./build --target crypto | ||
- name: Build SSL | ||
run: cmake --build ./build --target ssl | ||
|
||
clang-ubuntu-2004-sanity: | ||
if: github.repository_owner == 'aws' | ||
needs: [sanity-test-run] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
gccversion: | ||
clangversion: | ||
- "10" | ||
- "11" | ||
- "12" | ||
|
@@ -282,8 +322,8 @@ jobs: | |
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: clang-${{ matrix.gccversion }} | ||
cxx-compiler: clang++-${{ matrix.gccversion }} | ||
c-compiler: clang-${{ matrix.clangversion }} | ||
cxx-compiler: clang++-${{ matrix.clangversion }} | ||
options: FIPS=${{ matrix.fips }} CMAKE_BUILD_TYPE=Release | ||
- name: Build Project | ||
run: cmake --build ./build --target all | ||
|
@@ -296,7 +336,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
gccversion: | ||
clangversion: | ||
- "13" | ||
- "14" | ||
- "15" | ||
|
@@ -313,8 +353,8 @@ jobs: | |
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: clang-${{ matrix.gccversion }} | ||
cxx-compiler: clang++-${{ matrix.gccversion }} | ||
c-compiler: clang-${{ matrix.clangversion }} | ||
cxx-compiler: clang++-${{ matrix.clangversion }} | ||
options: FIPS=${{ matrix.fips }} CMAKE_BUILD_TYPE=Release | ||
- name: Build Project | ||
run: cmake --build ./build --target all | ||
|
@@ -327,7 +367,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
gccversion: | ||
clangversion: | ||
- "16" | ||
- "17" | ||
- "18" | ||
|
@@ -344,8 +384,8 @@ jobs: | |
uses: threeal/[email protected] | ||
with: | ||
generator: Ninja | ||
c-compiler: clang-${{ matrix.gccversion }} | ||
cxx-compiler: clang++-${{ matrix.gccversion }} | ||
c-compiler: clang-${{ matrix.clangversion }} | ||
cxx-compiler: clang++-${{ matrix.clangversion }} | ||
options: FIPS=${{ matrix.fips }} CMAKE_BUILD_TYPE=Release | ||
- name: Build Project | ||
run: cmake --build ./build --target all | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,4 @@ symbols.txt | |
.fleet/ | ||
.cache/ | ||
/CMakePresets.json | ||
/compile_commands.json |
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.