generated from matsim-scenarios/matsim-scenario-template
-
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
0 parents
commit 7cf3fea
Showing
26 changed files
with
3,376 additions
and
0 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,21 @@ | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
|
||
|
||
[*.java] | ||
indent_style = tab | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
max_line_length = 150 | ||
|
||
|
||
[*.{xml, xsd, dtd}] | ||
max_line_length = off | ||
indent_style = tab | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_size = 4 |
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,97 @@ | ||
name: build | ||
|
||
on: push | ||
|
||
jobs: | ||
|
||
checkstyle: | ||
#run if push or pull_requests from fork | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
name: Checkstyle | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
architecture: x64 | ||
distribution: adopt | ||
cache: maven | ||
|
||
- name: Checkstyle | ||
run: mvn --batch-mode --update-snapshots checkstyle:checkstyle | ||
|
||
enforce: | ||
#run if push or pull_requests from fork | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
name: Maven Dependencies | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
architecture: x64 | ||
distribution: adopt | ||
cache: maven | ||
|
||
- name: Package | ||
run: mvn --batch-mode --update-snapshots enforcer:enforce | ||
|
||
test: | ||
#run if push or pull_requests from fork | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
name: Tests | ||
|
||
runs-on: ubuntu-latest | ||
timeout-minutes: 45 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
java: [21] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java }} | ||
architecture: x64 | ||
distribution: adopt | ||
cache: maven | ||
|
||
- name: Test | ||
run: mvn --batch-mode --update-snapshots test -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: test-coverage | ||
path: target/site/jacoco/ | ||
|
||
package: | ||
#run if push or pull_requests from fork | ||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | ||
needs: [checkstyle, enforce, test] | ||
name: Package | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
architecture: x64 | ||
distribution: adopt | ||
cache: maven | ||
|
||
- name: Package | ||
run: mvn --batch-mode --update-snapshots package -DskipTests -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e | ||
- run: mkdir staging && cp *.jar staging | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: Package | ||
path: staging | ||
|
||
env: | ||
MAVEN_OPTS: -Xmx512m |
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,22 @@ | ||
name: Publish package | ||
on: | ||
release: | ||
types: [created] | ||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
architecture: x64 | ||
distribution: adopt | ||
|
||
- name: Publish package | ||
run: mvn --batch-mode deploy | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
env: | ||
MAVEN_OPTS: -Xmx512m |
Oops, something went wrong.