[BACKPORT] FIPS build fixes, Bump Version to 2.0.7 #4376
Workflow file for this run
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
name: macOS CI | |
# Workflow syntax. | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
on: | |
pull_request: | |
branches: | |
- '*' | |
env: | |
PACKAGE_NAME: aws-lc | |
# Used to enable ASAN test dimension. | |
AWSLC_NO_ASM_FIPS: 1 | |
jobs: | |
macOS: | |
runs-on: macos-11 # latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build ${{ env.PACKAGE_NAME }} | |
run: | | |
./tests/ci/run_posix_tests.sh | |
macOS-FIPS: | |
runs-on: macos-11 # latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build ${{ env.PACKAGE_NAME }} with FIPS mode | |
run: | | |
./tests/ci/run_fips_tests.sh |