2021-11-06 09:27:33 +05:30
|
|
|
name: Docker-Compose Build and Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-hotspot-test:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-12 01:17:40 +05:30
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
docker-compose-file:
|
|
|
|
- docker-compose.yml
|
|
|
|
- testing/docker-compose.hsqldb.yml
|
2021-12-12 01:50:59 +05:30
|
|
|
- testing/docker-compose.cockroachdb.yml
|
2022-03-01 04:16:02 +05:30
|
|
|
- testing/docker-compose.yugabytedb.yml
|
2022-06-02 17:03:07 +05:30
|
|
|
dockerfile:
|
|
|
|
- Dockerfile
|
|
|
|
- Dockerfile.openj9
|
|
|
|
- Dockerfile.graalvm-jvm
|
2021-11-06 09:27:33 +05:30
|
|
|
steps:
|
2022-03-02 18:38:41 +05:30
|
|
|
- uses: actions/checkout@v3
|
2022-02-22 14:46:45 +05:30
|
|
|
- name: Create Version File
|
|
|
|
run: echo $(git log -1 --date=short --pretty=format:%cd)-$(git rev-parse --short HEAD) > VERSION
|
2021-11-06 09:27:33 +05:30
|
|
|
- name: Build Locally
|
2022-05-06 18:34:29 +05:30
|
|
|
uses: docker/build-push-action@v3.0.0
|
2022-02-22 14:46:45 +05:30
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
load: true
|
2022-06-02 17:03:07 +05:30
|
|
|
file: ${{ matrix.dockerfile }}
|
2022-02-22 14:46:45 +05:30
|
|
|
tags: 1337kavin/piped:latest
|
2021-11-06 09:27:33 +05:30
|
|
|
- name: Start Docker-Compose services
|
2021-12-12 01:17:40 +05:30
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep 5
|
2021-11-06 09:27:33 +05:30
|
|
|
- name: Run tests
|
2021-12-12 01:17:40 +05:30
|
|
|
run: ./testing/api-test.sh
|