-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3046 from 1c-syntax/feature/check-package
Проверка сборки package в develop + поддержка jdk20 для jacoco и lombok
- Loading branch information
Showing
2 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Check making image | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- feature/check-package | ||
|
||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [windows-latest, ubuntu-latest, macOS-latest] | ||
include: | ||
- os: windows-latest | ||
displayName: Windows | ||
prefix: win | ||
app-image: bsl-language-server | ||
- os: ubuntu-latest | ||
displayName: Linux | ||
prefix: nix | ||
app-image: bsl-language-server | ||
- os: macOS-latest | ||
displayName: MacOS | ||
prefix: mac | ||
app-image: bsl-language-server.app | ||
runs-on: ${{ matrix.os }} | ||
name: (${{ matrix.displayName }}) create image app version | ||
|
||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 20 | ||
distribution: 'temurin' | ||
|
||
- name: Build bootJar with Gradle | ||
run: ./gradlew check build | ||
|
||
- name: Build jpackage application image | ||
run: python .github/scripts/build-jpackage.py ${{ matrix.prefix }} ${{ matrix.app-image }} | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters