aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2021-07-03 03:00:02 +0200
committerwithmorten <morten.with@gmail.com>2021-07-03 03:03:25 +0200
commita92dcaa0b115e61b18aae5a8f368a5d92614db21 (patch)
tree990aaaf66aa66a8da8371460bd8c28c5c353733f /.github
parent1c0878f65b8a554bdea9183fdc4b76645e530ccb (diff)
premake: add no-full-paths option for CI builds, rename lto to with-lto
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/reVC_msvc_amd64.yml2
-rw-r--r--.github/workflows/reVC_msvc_x86.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/reVC_msvc_amd64.yml b/.github/workflows/reVC_msvc_amd64.yml
index 9cd83ee7..ad883d32 100644
--- a/.github/workflows/reVC_msvc_amd64.yml
+++ b/.github/workflows/reVC_msvc_amd64.yml
@@ -34,7 +34,7 @@ jobs:
7z x ${{env.GLFW_FILE}}
- name: Configure build
run: |
- ./premake5 vs2019 --with-librw --glfwdir64=${{env.GLFW_BASE}}
+ ./premake5 vs2019 --with-librw --no-full-paths --glfwdir64=${{env.GLFW_BASE}}
- name: Build
run: |
msbuild -m build/reVC.sln /property:Configuration=${{matrix.buildtype}} /property:Platform=${{matrix.platform}}
diff --git a/.github/workflows/reVC_msvc_x86.yml b/.github/workflows/reVC_msvc_x86.yml
index dc5eaed2..1407aeae 100644
--- a/.github/workflows/reVC_msvc_x86.yml
+++ b/.github/workflows/reVC_msvc_x86.yml
@@ -34,7 +34,7 @@ jobs:
7z x ${{env.GLFW_FILE}}
- name: Configure build
run: |
- ./premake5 vs2019 --with-librw --glfwdir32=${{env.GLFW_BASE}}
+ ./premake5 vs2019 --with-librw --no-full-paths --glfwdir32=${{env.GLFW_BASE}}
- name: Build
run: |
msbuild -m build/reVC.sln /property:Configuration=${{matrix.buildtype}} /property:Platform=${{matrix.platform}}