Fix cmake arg order

This commit is contained in:
Vincent Stumpf 2023-07-12 03:27:56 +00:00
parent 9636aa020d
commit eadff3366d
6 changed files with 6 additions and 6 deletions

View File

@ -86,7 +86,7 @@ jobs:
- name: Build - name: Build
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
run: cmake --build -j2 . --target server run: cmake --build . -j2 --target server
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v2

View File

@ -46,4 +46,4 @@ jobs:
- name: Build - name: Build
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
# Execute the build. You can specify a specific target with "--target <NAME>" # Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build -j2 . --target server tools run: cmake --build . -j2 --target server tools

View File

@ -70,7 +70,7 @@ jobs:
- name: Build - name: Build
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
run: cmake --build -j2 . --target server run: cmake --build . -j2 --target server
- name: Run Once - login-server - name: Run Once - login-server
run: ./login-server --run-once run: ./login-server --run-once

View File

@ -72,4 +72,4 @@ jobs:
- name: Build - name: Build
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
run: cmake --build -j2 . run: cmake --build . -j2

View File

@ -70,7 +70,7 @@ jobs:
- name: Build - name: Build
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
run: cmake --build -j2 . --target server run: cmake --build . -j2 --target server
- name: Run Once - login-server - name: Run Once - login-server
run: ./login-server --run-once run: ./login-server --run-once

View File

@ -73,7 +73,7 @@ jobs:
- name: Build - name: Build
working-directory: ${{github.workspace}}/build working-directory: ${{github.workspace}}/build
run: cmake --build -j2 . --target map-server run: cmake --build . -j2 --target map-server
# npc.sh enables all NPC scripts in the custom and test folders. # npc.sh enables all NPC scripts in the custom and test folders.
- name: Enable All NPCs for Testing - name: Enable All NPCs for Testing