2021-11-06 03:57:33 +00:00
|
|
|
name: Docker-Compose Build and Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-hotspot-test:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-11 19:47:40 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
docker-compose-file:
|
|
|
|
- docker-compose.yml
|
|
|
|
- testing/docker-compose.hsqldb.yml
|
2021-12-11 20:20:59 +00:00
|
|
|
- testing/docker-compose.cockroachdb.yml
|
2022-02-24 12:27:23 +00:00
|
|
|
#- testing/docker-compose.yugabytedb.yml
|
2021-11-06 03:57:33 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2.4.0
|
2022-02-22 09:16:45 +00:00
|
|
|
- name: Create Version File
|
|
|
|
run: echo $(git log -1 --date=short --pretty=format:%cd)-$(git rev-parse --short HEAD) > VERSION
|
2021-11-06 03:57:33 +00:00
|
|
|
- name: Build Locally
|
2022-02-22 09:16:45 +00:00
|
|
|
uses: docker/build-push-action@v2.9.0
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
load: true
|
|
|
|
tags: 1337kavin/piped:latest
|
2021-11-06 03:57:33 +00:00
|
|
|
- name: Start Docker-Compose services
|
2021-12-11 19:47:40 +00:00
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep 5
|
2021-11-06 03:57:33 +00:00
|
|
|
- name: Run tests
|
2021-12-11 19:47:40 +00:00
|
|
|
run: ./testing/api-test.sh
|