-
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.
feat: Add a first GUI implementation (#1)
fix: Allow user to pass 0 as a target of a characteristic to force the algorithm to find equipments with no negative value fix: Fix a score computation bug with elementary mastery that was giving a higher score for builds than expected Co-authored-by: charles-eddy.parpet <[email protected]>
- Loading branch information
1 parent
6331c4f
commit 9edc221
Showing
9,969 changed files
with
1,927 additions
and
111,261 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,30 @@ | ||
name: Build | ||
|
||
on: [push, workflow_dispatch, workflow_call] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout project sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
- name: Verify everything is working fine | ||
run: ./gradlew test | ||
|
||
- name: Create Jars | ||
run: ./gradlew jar | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build-result | ||
path: | | ||
. | ||
gui/build/libs/*.jar | ||
!gui/build/ | ||
!gui/src/ | ||
!.git | ||
if-no-files-found: error |
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,24 @@ | ||
name: Deploy | ||
on: [workflow_dispatch] | ||
jobs: | ||
build: | ||
# Use the Build workflow described above | ||
uses: ./.github/workflows/build.yml | ||
deploy: | ||
needs: [build] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Download artifact | ||
uses: actions/download-artifact@v3 | ||
with: | ||
# This is the name of the "Upload artifact" action above. | ||
name: build-result | ||
- name: Run Conveyor | ||
uses: hydraulic-software/conveyor/actions/[email protected] | ||
with: | ||
extra_flags: '-f ./gui/conveyor.conf' | ||
command: make copied-site | ||
signing_key: ${{ secrets.SIGNING_KEY }} | ||
agree_to_license: 1 |
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
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.