-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feature: added build workflow * fix: added libs * fix: fixed bugs
- Loading branch information
1 parent
4de3fbe
commit c57bc6b
Showing
5 changed files
with
45 additions
and
1 deletion.
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,41 @@ | ||
name: Build | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '21' | ||
cache: maven | ||
distribution: 'temurin' | ||
|
||
- name: "Install prerequisites" | ||
run: | | ||
make prepare | ||
- name: "Linter" | ||
run: | | ||
make lint | ||
- name: "Build Cluster" | ||
run: | | ||
make build-cluster | ||
- name: "Build API Server" | ||
run: | | ||
make build-api-server | ||
- name: "Build CLI" | ||
run: | | ||
make build-cli | ||
- name: "Build GUI" | ||
run: | | ||
make build-gui |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.