File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed
Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff line change 11name : bld-ci
22
3- on : [push, pull_request, workflow_dispatch]
4-
5- env :
6- KOTLIN_HOME : /usr/share/kotlinc
3+ on : [ push, pull_request, workflow_dispatch ]
74
85jobs :
96 build-bld-project :
10- runs-on : ubuntu-latest
11-
127 strategy :
138 matrix :
14- java-version : [17, 21, 24]
9+ java-version : [ 17, 21, 24 ]
10+ kotlin-version : [ 1.9.25, 2.0.21, 2.1.20 ]
11+ os : [ ubuntu-latest, windows-latest, macos-latest ]
12+
13+ runs-on : ${{ matrix.os }}
1514
1615 steps :
1716 - name : Checkout source repository
2524 distribution : " zulu"
2625 java-version : ${{ matrix.java-version }}
2726
27+ - name : Download dependencies [examples]
28+ working-directory : examples
29+ run : ./bld download
30+
31+ - name : Compile and run [examples]
32+ working-directory : examples
33+ run : ./bld compile run
34+
2835 - name : Download dependencies
2936 run : ./bld download
3037
3138 - name : Run tests
32- run : ./bld compile test
39+ run : ./bld compile test
You can’t perform that action at this time.
0 commit comments