We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e1c01c commit 4faf000Copy full SHA for 4faf000
1 file changed
.github/workflows/ci.yml
@@ -85,7 +85,7 @@ jobs:
85
86
build-windows:
87
runs-on: windows-latest
88
- timeout-minutes: 20
+ timeout-minutes: 30
89
steps:
90
- name: Checkout
91
uses: actions/checkout@v4
@@ -96,13 +96,17 @@ jobs:
96
xmake-version: latest
97
package-cache: true
98
99
- - name: Build
+ - name: Build core library
100
run: |
101
xmake f -m release -y -vv
102
- xmake -y -vv -j$env:NUMBER_OF_PROCESSORS
+ xmake b -y -vv -j2 mcpplibs-primitives
103
104
- - name: Test
105
- run: xmake run primitives_test
+ - name: Build and test
+ run: |
106
+ xmake b -y -vv -j2 primitives_test
107
+ xmake run primitives_test
108
- - name: Run examples
- run: xmake run basic
109
+ - name: Build and run basic example
110
111
+ xmake b -y -vv -j2 basic
112
+ xmake run basic
0 commit comments