summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2020-12-14 16:18:51 -0500
committerGitHub <noreply@github.com>2020-12-14 16:18:51 -0500
commit1bc794845317c952a5167936f9087e99b86bd0cb (patch)
tree2b6c69f8549ec262e58bf589bf7d818dc0853315 /.github/workflows
parent856d7d3705cedabcc2e9389a3f0ac730b0e33476 (diff)
Enable embedding stdlib for github builds (#1640)
* #include an absolute path didn't work - because paths were taken to always be relative. * Enable building with embedding stdlib.
Diffstat (limited to '.github/workflows')
-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 15b164efc..ac0d90ee6 100644
--- a/.github/workflows/release-windows.yml
+++ b/.github/workflows/release-windows.yml
@@ -23,7 +23,7 @@ jobs:
uses: microsoft/setup-msbuild@v1
- name: premake
run:
- .\premake.bat vs2017
+ .\premake.bat vs2017 --enable-embed-stdlib=true
- name: msbuild
run:
MSBuild.exe slang.sln -v:m -m -property:Configuration=${{matrix.configuration}} -property:Platform=${{matrix.platform}} -property:WindowsTargetPlatformVersion=10.0.19041.0
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index d01a4ba93..4f871a6c0 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -24,7 +24,7 @@ jobs:
uses: microsoft/setup-msbuild@v1
- name: premake
run:
- .\premake.bat vs2017
+ .\premake.bat vs2017 --enable-embed-stdlib=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