Bumped bld to version 2.0.0-SNAPSHOT

This commit is contained in:
Erik C. Thauvin 2024-07-22 09:58:10 -07:00
parent c8878968ef
commit bd9aa20223
Signed by: erik
GPG key ID: 776702A6A2DA330E
11 changed files with 24 additions and 28 deletions

View file

@ -1,6 +1,6 @@
name: bld-ci
on: [push, pull_request, workflow_dispatch]
on: [ push, pull_request, workflow_dispatch ]
jobs:
build-bld-project:
@ -8,7 +8,8 @@ jobs:
strategy:
matrix:
java-version: [17, 21, 22]
java-version: [ 17, 21, 22 ]
kotlin-version: [ 1.19.24, 2.0.0 ]
steps:
- name: Checkout source repository
@ -22,17 +23,15 @@ jobs:
distribution: "zulu"
java-version: ${{ matrix.java-version }}
- name: Download the examples dependencies
- name: Download dependencies [examples]
working-directory: examples
run: |
chmod +x bld
./bld download
run: ./bld download
- name: Run examples tests
- name: Run tests [examples]
working-directory: examples
run: ./bld compile test
- name: Build examples documentation
- name: Build documentation [examples]
working-directory: examples
run: |
./bld javadoc
@ -40,10 +39,7 @@ jobs:
./bld dokka-gfm
./bld dokka-jekyll
- name: Grant execute permission for bld
run: chmod +x bld
- name: Download the dependencies
- name: Download dependencies
run: ./bld download
- name: Run tests