Skip to content

Merge pull request #55 from gden173/fix/invalid-file-location #283

Merge pull request #55 from gden173/fix/invalid-file-location

Merge pull request #55 from gden173/fix/invalid-file-location #283

Workflow file for this run

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@v3
with:
distribution: 'zulu'
java-version: '17'
- 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