File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -55,29 +55,34 @@ jobs:
55
55
run : |
56
56
docker inspect orphan
57
57
58
+ - name : Container – Unpack Packages
59
+ run : |
60
+ docker exec orphan `
61
+ ${{ env.entry }} ${{ env.cmd }} C:\unpack.ps1
62
+
58
63
- name : Container – Configure Project with CMake
59
64
run : |
60
65
docker exec orphan `
61
- ${{ env.entry }} ${{ env.cmd }} cmake `
66
+ ${{ env.entry }} ${{ env.cmd }} -Command cmake `
62
67
--preset ci-configure-dynamic-${{ matrix.vendor }} `
63
68
--profiling-output=profiling/cmake-profiling.json `
64
69
--profiling-format=google-trace
65
70
66
71
- name : Container – Build NSC
67
72
run : |
68
73
docker exec orphan `
69
- ${{ env.entry }} ${{ env.cmd }} cmake --build `
74
+ ${{ env.entry }} ${{ env.cmd }} -Command cmake --build `
70
75
--preset ci-build-dynamic-${{ matrix.vendor }} `
71
76
-t nsc --config ${{ matrix.config }}
72
77
73
78
- name : Container – Install NSC
74
79
run : |
75
80
docker exec orphan `
76
- ${{ env.entry }} ${{ env.cmd }} cmake --install `
81
+ ${{ env.entry }} ${{ env.cmd }} -Command cmake --install `
77
82
${{ env.binary }} --config ${{ matrix.config }} `
78
83
--component Runtimes --prefix ${{ env.install }}
79
84
docker exec orphan `
80
- ${{ env.entry }} ${{ env.cmd }} cmake --install `
85
+ ${{ env.entry }} ${{ env.cmd }} -Command cmake --install `
81
86
${{ env.binary }} --config ${{ matrix.config }} `
82
87
--component Executables --prefix ${{ env.install }}
83
88
You can’t perform that action at this time.
0 commit comments