summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2022-07-22 01:52:56 -0400
committerGitHub <noreply@github.com>2022-07-21 22:52:56 -0700
commit70147fc7ba6abe0b669363ed5adfd8d4d9545c3f (patch)
treeb87fc82b4e8aff88d752a0505091121fa070a259 /.github
parent73b52f6075eb8a4f674e5d66d2a6192ca71f26d3 (diff)
Small fixes for github actions for windows. (#2337)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-windows.yml2
-rw-r--r--.github/workflows/windows.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-windows.yml b/.github/workflows/release-windows.yml
index e28cd13cb..b3d69e57a 100644
--- a/.github/workflows/release-windows.yml
+++ b/.github/workflows/release-windows.yml
@@ -26,7 +26,7 @@ jobs:
- name: msbuild (x64 tools)
if: ${{ matrix.platform == 'aarch64' }}
run: |
- .\premake.bat vs2017 --arch=x64 --ignore-deps=slang-llvm
+ .\premake.bat vs2017 --arch=x64 --ignore-deps=slang-llvm,slang-glslang --no-progress=true
MSBuild.exe slang.sln -v:m -m -property:Configuration=Release -property:Platform=x64 -property:WindowsTargetPlatformVersion=10.0.19041.0
# Do the premake for the actual target, downloading dependencies if necessary
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index b5bc8c7ee..994f15853 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -25,7 +25,7 @@ jobs:
- name: premake
run:
- .\premake.bat vs2017 --enable-embed-stdlib=true --arch=${{matrix.platform}} --deps=true
+ .\premake.bat vs2017 --enable-embed-stdlib=true --arch=${{matrix.platform}} --deps=true --no-progress=true
- name: build
run:
MSBuild.exe slang.sln -v:m -m -property:Configuration=${{matrix.configuration}} -property:Platform=${{matrix.platform}} -property:WindowsTargetPlatformVersion=10.0.19041.0