diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..2b1c635 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 8f8cbf8..946538b 100644 --- a/.gitignore +++ b/.gitignore @@ -19,7 +19,6 @@ .mtj.tmp/ # Package Files # -*.jar *.war *.nar *.ear @@ -34,3 +33,7 @@ replay_pid* # Idea .idea/ + +# MacOS + +.DS_Store \ No newline at end of file diff --git a/lib/.DS_Store b/lib/.DS_Store deleted file mode 100644 index 12e02e7..0000000 Binary files a/lib/.DS_Store and /dev/null differ diff --git a/lib/ElementFX-1.3-SNAPSHOT.jar b/lib/ElementFX-1.3-SNAPSHOT.jar new file mode 100644 index 0000000..8f43a85 Binary files /dev/null and b/lib/ElementFX-1.3-SNAPSHOT.jar differ diff --git a/lib/Shell-Command-Executor-Lib-0.5.0-SNAPSHOT.jar b/lib/Shell-Command-Executor-Lib-0.5.0-SNAPSHOT.jar new file mode 100644 index 0000000..536b048 Binary files /dev/null and b/lib/Shell-Command-Executor-Lib-0.5.0-SNAPSHOT.jar differ