Skip to content

Commit

Permalink
Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Nov 20, 2024
1 parent 663cb9e commit a3aecd3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/misc-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,34 @@ jobs:
echo "Error: PR description does not contain the required license statement."
exit 1
fi
path-has-spaces:
if: github.repository_owner == 'aws'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-13, macos-14-xlarge ]
fips:
- "0"
- "1"
steps:
- if: ${{ matrix.os == 'windows-latest' }}
name: Install NASM
uses: ilammy/[email protected]
- name: Checkout
uses: actions/checkout@v4
with:
path: "path has spaces/aws-lc"
- if: ${{ matrix.os != 'windows-latest' }}
name: See directory
run: pwd
- name: Setup CMake
uses: threeal/[email protected]
with:
source-dir: 'path has spaces/aws-lc'
generator: Ninja
options: CMAKE_BUILD_TYPE=Release BUILD_SHARED_LIBS=1
- name: Build Project
run: cmake --build ./build --target all
- name: Run tests
run: cmake --build ./build --target run_tests

0 comments on commit a3aecd3

Please sign in to comment.