Fix USE_MASM=OFF in github actions
authorCharles Giessen <charles@lunarg.com>
Wed, 7 Jun 2023 18:38:29 +0000 (12:38 -0600)
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>
Wed, 7 Jun 2023 19:01:01 +0000 (13:01 -0600)
The windows_vs-no-asm was incorrectly setup, causing the assembler to
be found when it should have used the fallback path.

.github/workflows/build.yml

index fd1ce4b..00218b5 100644 (file)
@@ -247,7 +247,7 @@ jobs:
                 python-version: '3.7'
 
             - name: Generate build files
-              run: cmake -S. -B build -DBUILD_TESTS=ON -DUPDATE_DEPS=ON -D CMAKE_BUILD_TYPE=Release -A ${{ matrix.arch }} -USE_MASM=OFF
+              run: cmake -S. -B build -DBUILD_TESTS=ON -DUPDATE_DEPS=ON -D USE_MASM=OFF -D CMAKE_BUILD_TYPE=Release -A ${{ matrix.arch }}
 
             - name: Build the loader
               run: cmake --build ./build --config Release