Issue 646: Transitions The Exchange From Akka To Pekko #40
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: exchange-unit-testing | |
on: | |
pull_request: | |
branches: | |
- master | |
- v2.87 | |
- v2.110 | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
env: | |
GOPATH: /home/runner/work/anax/anax/go | |
DEBIAN_FRONTEND: noninteractive | |
DOCKER_NETWORK: exchange-api-network | |
DOCKER_REGISTRY: openhorizon | |
EXCHANGE_FE_HEADER: issuer | |
EXCHANGE_ROOTPW: ci-password | |
POSTGRES_DB_NAME: exchange | |
POSTGRES_DB_PORT: 5432 | |
POSTGRES_DB_USER: admin | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- uses: actions/checkout@v3 | |
# Setup Scala | |
# Comes from open source action: https://github.com/coursier/setup-action | |
- name: Setup Scala | |
uses: coursier/setup-action@v1 | |
- name: Create Docker Env | |
run: | | |
pwd | |
java -version | |
make docker-network | |
docker run -d -e POSTGRES_HOST_AUTH_METHOD=trust -e POSTGRES_DB=$POSTGRES_DB_NAME -e POSTGRES_USER=$POSTGRES_DB_USER --network $DOCKER_NETWORK --name postgres postgres | |
export POSTGRES_CONTAINER_ADDRESS=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' postgres) | |
make run-docker | |
cat /etc/horizon/exchange/config-http.json | |
docker ps -a | |
docker network ls | |
make test |