✨ Delete Multiple Elections #596
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
- '[0-9]+.[0-9]+.x' | |
tags: | |
- '**' | |
pull_request: | |
branches: | |
- master | |
- '[0-9]+.[0-9]+.x' | |
jobs: | |
unittest: | |
runs-on: ubuntu-20.04 | |
container: ubuntu:20.04 | |
env: | |
# define Java options for both official sbt and sbt-extras | |
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8 | |
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8 | |
services: | |
postgres: | |
image: postgres:12 | |
env: | |
POSTGRES_USER: ballot_box | |
POSTGRES_PASSWORD: mypassword | |
POSTGRES_DB: ballot_box | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
memcached: | |
image: memcached:latest | |
ports: | |
- 11211/udp | |
# needed because the memcached container does not provide a healthcheck | |
options: --health-cmd "timeout 5 bash -c 'cat < /dev/null > /dev/udp/127.0.0.1/11211'" --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
apt update | |
apt install -y wget postgresql-client curl python3 python3-venv python3-pip | |
- name: Setup Python environment | |
shell: bash | |
run: | | |
pip install -r admin/requirements.txt | |
sed -i '/^source /d' admin/admin_env.sh | |
# source: https://www.scala-sbt.org/1.x/docs/GitHub-Actions-with-sbt.html | |
- name: Setup Scala, Sbt and Java 8 | |
uses: olafurpg/setup-scala@v10 | |
with: | |
java-version: "[email protected]" | |
- name: Build | |
run: sbt -v clean stage | |
- name: Create pom.xml | |
run: | | |
sbt makePom | |
- name: Upload pom.xml artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: pom.xml | |
path: target/**/*.pom | |
if-no-files-found: error | |
- name: Set test data | |
run: | | |
cp conf/test.local.conf.example conf/test.local.conf | |
mkdir -p /tmp/ballot_box/datastore/public | |
mkdir -p /tmp/ballot_box/datastore/private | |
cp -rf testdata/eopeers /etc | |
cp -rf testdata/keystore.jks /tmp | |
- name: Run sbt test | |
run: sbt test | |
env: | |
PGSYSCONFDIR: testdata |