Skip to content

Commit

Permalink
Test on Windows w/ GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Nov 25, 2024
1 parent 46b8da9 commit ba2fc46
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/windows-alt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
uses: ilammy/[email protected]
- name: Checkout
uses: actions/checkout@v4
with:
path: "path has spaces/aws-lc"
- name: Setup MinGW
uses: egor-tensin/[email protected]
id: setup_mingw
Expand All @@ -25,6 +27,8 @@ jobs:
uses: threeal/[email protected]
with:
generator: Ninja
source-dir: 'path has spaces/aws-lc'
build-dir: 'path has spaces/build'
c-compiler: ${{ steps.setup_mingw.outputs.gcc }}
cxx-compiler: ${{ steps.setup_mingw.outputs.gxx }}
options: |
Expand All @@ -37,9 +41,9 @@ jobs:
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \
CMAKE_BUILD_TYPE=Release \
- name: Build Project
run: cmake --build ./build --target all
run: cmake --build "path has spaces/build" --target all
- name: Run tests
run: cmake --build ./build --target run_tests
run: cmake --build "path has spaces/build" --target run_tests
clang:
if: github.repository_owner == 'aws'
runs-on: windows-latest
Expand Down

0 comments on commit ba2fc46

Please sign in to comment.