-
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.
- Loading branch information
Showing
63 changed files
with
714 additions
and
32 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,8 @@ jobs: | |
- ops: lamport | ||
dev: turing | ||
- ops: milner | ||
dev: turing | ||
- ops: nakamoto | ||
dev: church | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -76,7 +78,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
opsenv: [shannon, lamport, milner] | ||
opsenv: [shannon, lamport, milner, nakamoto] | ||
usecase: [func] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
|
@@ -104,7 +106,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
opsenv: [shannon, lamport, milner] | ||
opsenv: [shannon, lamport, milner, nakamoto] | ||
usecase: [func] | ||
shard: [0, 1] | ||
runs-on: ubuntu-22.04 | ||
|
@@ -144,7 +146,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
opsenv: [shannon, lamport, milner] | ||
opsenv: [shannon, lamport, milner, nakamoto] | ||
usecase: [func] | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
|
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,12 @@ | ||
ARG JAVA_RELEASE | ||
FROM eclipse-temurin:${JAVA_RELEASE}-jre-alpine | ||
RUN addgroup -S bezmen && adduser -S bezmen -G bezmen | ||
USER bezmen:bezmen | ||
WORKDIR /home/bezmen | ||
COPY libs libs | ||
COPY sepuling*.jar app.jar | ||
ENTRYPOINT [ \ | ||
"java", "-cp", "app.jar:libs/*", \ | ||
"-Dconfig.file=application.conf", \ | ||
"smecalculus.bezmen.construction.AppKt" \ | ||
] |
Oops, something went wrong.