aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDioEgizio <83089242+DioEgizio@users.noreply.github.com>2022-03-21 19:29:33 +0100
committerGitHub <noreply@github.com>2022-03-21 19:29:33 +0100
commit8accb6f04e1b9bcbfaf68f7930ffd12fddebccf8 (patch)
tree447cc7bf7365a102f060c05f4ba47eccc07d03a2
parentd1d055564ccdcd7bb4aa37cb4cd42b7429cffa96 (diff)
downloadPrismLauncher-8accb6f04e1b9bcbfaf68f7930ffd12fddebccf8.tar.gz
PrismLauncher-8accb6f04e1b9bcbfaf68f7930ffd12fddebccf8.tar.bz2
PrismLauncher-8accb6f04e1b9bcbfaf68f7930ffd12fddebccf8.zip
fix typos
opz :P
-rw-r--r--.github/workflows/build.yml23
1 files changed, 12 insertions, 11 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index b0a57c41..5fb98faa 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -135,11 +135,18 @@ jobs:
run: |
cmake -S . -B ${{ env.BUILD_DIR }} -DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR }} -DCMAKE_BUILD_TYPE=${{ inputs.build_type }} -G Ninja
- - name: Configure CMake on Windows
- if: runner.os == 'Windows'
+ - name: Configure CMake on Windows
+ if: runner.os == 'Windows' && matrix.portable != true
shell: msys2 {0}
run: |
- cmake -S . -B ${{ env.BUILD_DIR }} -DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR }} -DCMAKE_BUILD_TYPE=${{ inputs.build_type }} -G Ninja
+ cmake -S . -B ${{ env.BUILD_DIR }} -DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR }} -DCMAKE_BUILD_TYPE=${{ inputs.build_type }} -G Ninja -DLauncher_PORTABLE=OFF
+
+
+ - name: Configure CMake on Windows portable
+ if: runner.os == 'Windows' && matrix.portable == true
+ shell: msys2 {0}
+ run: |
+ cmake -S . -B ${{ env.BUILD_DIR }} -DCMAKE_INSTALL_PREFIX=${{ env.INSTALL_DIR }} -DCMAKE_BUILD_TYPE=${{ inputs.build_type }} -G Ninja
- name: Configure CMake on Linux
if: runner.os == 'Linux'
@@ -151,17 +158,11 @@ jobs:
run: |
cmake --build ${{ env.BUILD_DIR }}
- - name: Build on Windows portable
- if: runner.os == 'Windows' && matrix.portable == true
+ - name: Build on Windows
+ if: runner.os == 'Windows'
shell: msys2 {0}
run: |
cmake --build ${{ env.BUILD_DIR }}
-
- - name: Build on Windows
- if: runner.os == 'Windows' && matrix.portable != true
- shell: msys2 {0}
- run: |
- cmake --build ${{ env.BUILD_DIR }} -DLauncher_PORTABLE=OFF
- name: Install
if: runner.os != 'Linux' && runner.os != 'Windows'