Skip to content

Commit

Permalink
update project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Mar 18, 2024
1 parent ac74112 commit e864a4e
Show file tree
Hide file tree
Showing 5 changed files with 458 additions and 29 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
90 changes: 79 additions & 11 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,106 @@
name: build

on: [ push, pull_request ]
on: push

jobs:
build:

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: 17
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: 17
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: [ 17 ]
java: [17]

steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
architecture: x64
distribution: zulu
distribution: adopt
cache: maven

- name: Cache Maven packages
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar

- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify -Dcheckstyle.skip org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=matsim-scenarios_matsim-metropole-ruhr --update-snapshots -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e


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: 17
architecture: x64
distribution: adopt
cache: maven

- name: Package
run: mvn -B package --file pom.xml -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e
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
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Publish package to GitHub Packages
name: Publish package
on:
release:
types: [ created ]
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
Expand All @@ -11,7 +11,7 @@ jobs:
with:
java-version: 17
architecture: x64
distribution: zulu
distribution: adopt

- name: Publish package
run: mvn --batch-mode deploy
Expand Down
Loading

0 comments on commit e864a4e

Please sign in to comment.