Skip to content

Commit c51f7e0

Browse files
committed
Minor cleanups
1 parent e5970bc commit c51f7e0

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

.github/workflows/bld.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: bld-ci
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on: [ push, pull_request, workflow_dispatch ]
44

55
env:
6-
KOTLIN_HOME: /usr/share/kotlinc
6+
KOTLIN_HOME: /usr/share/kotlinc
77

88
jobs:
99
build-bld-project:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
1313
matrix:
14-
java-version: [17, 21, 22]
15-
kotlin-version: [1.9.24, 2.0.0]
14+
java-version: [ 17, 21, 22 ]
15+
kotlin-version: [ 1.9.24, 2.0.0 ]
1616

1717
steps:
1818
- name: Checkout source repository
@@ -26,20 +26,15 @@ jobs:
2626
distribution: "zulu"
2727
java-version: ${{ matrix.java-version }}
2828

29-
- name: Download the examples dependencies
29+
- name: Download dependencies [examples]
3030
working-directory: examples
31-
run: |
32-
chmod +x bld
33-
./bld download
31+
run: ./bld download
3432

35-
- name: Run examples tests
33+
- name: Run tests [examples]
3634
working-directory: examples
3735
run: ./bld compile test
3836

39-
- name: Grant execute permission for bld
40-
run: chmod +x bld
41-
42-
- name: Download the dependencies
37+
- name: Download dependencies
4338
run: ./bld download
4439

4540
- name: Run tests

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: javadocs-pages
33
on:
44
# Runs on pushes targeting the default branch
55
push:
6-
branches: ["main"]
6+
branches: [ "main" ]
77

88
# Allows you to run this workflow manually from the Actions tab
99
workflow_dispatch:

.vscode/launch.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"--disable-banner",
1313
"--disable-ansi-colors",
1414
"--exclude-engine=junit-platform-suite",
15-
"--exclude-engine=junit-vintage"]
15+
"--exclude-engine=junit-vintage"
16+
]
1617
}
1718
]
1819
}

examples/.idea/kotlinc.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/.idea/misc.xml

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/lib/bld/bld-wrapper.jar

540 Bytes
Binary file not shown.

lib/bld/bld-wrapper.jar

540 Bytes
Binary file not shown.

lib/bld/bld-wrapper.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
bld.downloadExtensionJavadoc=false
22
bld.downloadExtensionSources=true
33
bld.downloadLocation=
4+
bld.javaOptions=
5+
bld.javacOptions=
46
bld.extension-exec=com.uwyn.rife2:bld-exec:1.0.1
57
bld.extension-pmd=com.uwyn.rife2:bld-pmd:1.1.2
68
bld.repositories=MAVEN_CENTRAL,MAVEN_LOCAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES

0 commit comments

Comments
 (0)