Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow authored Jan 13, 2023
0 parents commit b29ea39
Show file tree
Hide file tree
Showing 24 changed files with 3,051 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
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
29 changes: 29 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: build

on: [ push, pull_request ]

jobs:
build:
#run if push or pull_requests from fork
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 17
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: -Xmx10G
21 changes: 21 additions & 0 deletions .github/workflows/checkstyle.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build

on: [ push, pull_request ]

jobs:
build:
#run if push or pull_requests from fork
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: 17
architecture: x64
distribution: adopt
cache: maven

- name: Package
run: mvn --batch-mode --update-snapshots checkstyle:checkstyle
20 changes: 20 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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: 17

- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

env:
MAVEN_OPTS: -Xmx10G
34 changes: 34 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: build

on: [ push, pull_request ]

jobs:
build:
#run if push or pull_requests from fork
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
java: [17]

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 tests -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e
- uses: actions/upload-artifact@v3
with:
name: jacoco-report
path: reports/jacoco/

env:
MAVEN_OPTS: -Xmx10G
Loading

0 comments on commit b29ea39

Please sign in to comment.