Bump ch.qos.logback:logback-classic from 1.2.3 to 1.2.13 in /ees #282
Workflow file for this run
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
name: EES CI | |
# Controls when the action will run. Triggers the workflow on push or pull request | |
# events but only for the master branch | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11.0.12' | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: cache-${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: cache-${{ runner.os }}-m2 | |
- name: Clone agentsoz/ees | |
uses: actions/checkout@v2 | |
with: | |
repository: agentsoz/ees | |
path: ees | |
- name: Checkout submodules | |
uses: srt32/git-actions@v0.0.3 | |
with: | |
args: git config --global --add safe.directory /github/workspace/ees && git config --global --add safe.directory /github/workspace/ees/libs/bdi-abm-integration && git config --global --add safe.directory /github/workspace/ees/libs/diffusion-model && cd ees && git submodule update --init --recursive | |
- name: Add write permissions to clone | |
run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE/ees | |
- name: List all cloned repositories | |
run: | | |
echo $GITHUB_WORKSPACE | |
ls -la $GITHUB_WORKSPACE | |
- name: Build agentsoz/ees | |
run: | | |
cd ees && ./mvnw -v && cd - | |
cd ees && ./mvnw package -B -Dmatsim.preferLocalDtds=true && cd - | |
mkdir staging && cp ees/ees/target/*.zip staging | |
- name: Upload EES build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
path: staging |