Skip to content

Commit

Permalink
Feature: add build workflow (#20)
Browse files Browse the repository at this point in the history
* feature: added build workflow

* fix: added libs

* fix: fixed bugs
  • Loading branch information
YarikRevich authored May 27, 2024
1 parent 4de3fbe commit c57bc6b
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 1 deletion.
41 changes: 41 additions & 0 deletions .github/workflows/build.yml
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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
Expand All @@ -34,3 +33,7 @@ replay_pid*
# Idea

.idea/

# MacOS

.DS_Store
Binary file removed lib/.DS_Store
Binary file not shown.
Binary file added lib/ElementFX-1.3-SNAPSHOT.jar
Binary file not shown.
Binary file added lib/Shell-Command-Executor-Lib-0.5.0-SNAPSHOT.jar
Binary file not shown.

0 comments on commit c57bc6b

Please sign in to comment.