Skip to content

Commit 75ddcd7

Browse files
GitHub actions: build ALL target instead of install
1 parent d7ae499 commit 75ddcd7

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
if: success()
5757
working-directory: ${{runner.workspace}}/build
5858
shell: bash
59-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
59+
run: cmake --build . --config ${{ matrix.config }} -j2

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
if: success()
5656
working-directory: ${{runner.workspace}}/build
5757
shell: bash
58-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
58+
run: cmake --build . --config ${{ matrix.config }} -j2
5959

6060
- name: DiligentToolsTest
6161
if: success()
@@ -115,7 +115,7 @@ jobs:
115115
if: success()
116116
working-directory: ${{runner.workspace}}/build
117117
shell: bash
118-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
118+
run: cmake --build . --config ${{ matrix.config }} -j2
119119

120120
- name: DiligentToolsTest
121121
if: success()

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
if: success()
5757
working-directory: ${{runner.workspace}}/build
5858
shell: bash
59-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
59+
run: cmake --build . --config ${{ matrix.config }} -j2
6060

6161
- name: DiligentToolsTest
6262
if: success()

.github/workflows/tvos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ jobs:
5656
if: success()
5757
working-directory: ${{runner.workspace}}/build
5858
shell: bash
59-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
59+
run: cmake --build . --config ${{ matrix.config }} -j2

.github/workflows/uwp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
if: success()
4747
working-directory: ${{runner.workspace}}/build
4848
shell: bash
49-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
49+
run: cmake --build . --config ${{ matrix.config }} -j2

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
if: success()
4747
working-directory: ${{runner.workspace}}/build
4848
shell: bash
49-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
49+
run: cmake --build . --config ${{ matrix.config }} -j2
5050

5151
- name: DiligentToolsTest
5252
if: success()
@@ -98,7 +98,7 @@ jobs:
9898
if: success()
9999
working-directory: ${{runner.workspace}}/build
100100
shell: bash
101-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
101+
run: cmake --build . --config ${{ matrix.config }} -j2
102102

103103
- name: DiligentToolsTest
104104
if: success()
@@ -150,7 +150,7 @@ jobs:
150150
if: success()
151151
working-directory: ${{runner.workspace}}/build
152152
shell: bash
153-
run: cmake --build . --config ${{ matrix.config }} --target install -j2
153+
run: cmake --build . --config ${{ matrix.config }} -j2
154154

155155
- name: DiligentToolsTest
156156
if: success()

0 commit comments

Comments
 (0)