Add automatically ETL of updates after start by parameter #1639
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: Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Install metafacture-core-snapshots | |
run: | | |
git clone https://github.com/metafacture/metafacture-core.git | |
cd metafacture-core | |
git checkout 5.7.0-rc1 | |
./gradlew publishToMavenLocal | |
cd .. | |
- name: Install metafacture-fix | |
run: | | |
git clone https://github.com/metafacture/metafacture-fix.git | |
cd metafacture-fix | |
git checkout master | |
git pull | |
./gradlew publishToMavenLocal | |
cd .. | |
- name: Build with Maven | |
run: mvn install | |
- name: Cache SBT | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.ivy2/cache | |
~/.sbt | |
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }} | |
- name: Build and Test with play | |
run: | | |
cd web | |
sbt -v +test |