-
Notifications
You must be signed in to change notification settings - Fork 62
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 #130 from FederatedAI/develop-1.8.0
Merge from develop-1.8.0
- Loading branch information
Showing
110 changed files
with
1,081 additions
and
863 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,33 @@ | ||
name: compile the source code | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
tags: | ||
- '**' | ||
|
||
workflow_dispatch: {} | ||
|
||
jobs: | ||
build: | ||
name: compile the source code | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check out the repo | ||
uses: actions/checkout@v2 | ||
|
||
- name: compile node.js code | ||
working-directory: resources-front-end | ||
run: | | ||
npm install | ||
npm run build | ||
- name: compile java code | ||
run: mvn clean package | ||
|
||
- name: archive artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: target | ||
path: target/fateboard-[0-9].[0-9].[0-9].jar |
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
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
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
Oops, something went wrong.