Merge pull request #40 from sharath-sg2706/spark-3.1 #21
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: HTTP.Almaren | |
on: [push, pull_request] | |
jobs: | |
Build: | |
runs-on: ubuntu-20.04 | |
services: | |
postgres: | |
image: postgres:13.4 | |
env: | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_HOST_AUTH_METHOD: trust | |
ports: | |
- 5432:5432 | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- name : Check out repository code | |
uses: actions/checkout@v2 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 8 | |
cache: sbt | |
- name: Setup web environment | |
run: | | |
curl -L http://cpanmin.us | perl - --sudo App::cpanminus | |
cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib) | |
cpanm Mojolicious | |
cpanm JSON::Parse | |
perl src/test/resources/script/mock_api.pl daemon -m dev -l http://\*:3000 & | |
- name: Build and test scala version | |
run: | | |
PGPASSWORD="postgres" psql -c 'create database almaren;' -U postgres -h localhost | |
PGPASSWORD="postgres" psql -c "ALTER USER postgres PASSWORD 'postgres' ;" -U postgres -h localhost | |
PGPASSWORD="postgres" psql -c 'create role runner;' -U postgres -h localhost | |
PGPASSWORD="postgres" psql -c 'ALTER ROLE "runner" WITH LOGIN SUPERUSER INHERIT CREATEDB CREATEROLE REPLICATION;' -U postgres -h localhost | |
sbt ++2.12.10 test | |
rm -rf "$HOME/.ivy2/local" || true | |
find $HOME/Library/Caches/Coursier/v1 -name "ivydata-*.properties" -delete || true | |
find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete || true | |
find $HOME/.cache/coursier/v1 -name "ivydata-*.properties" -delete || true | |
find $HOME/.sbt -name "*.lock" -delete || true | |
killall -9 perl |