2021-11-06 03:57:33 +00:00
|
|
|
name: Docker-Compose Build and Test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "**.md"
|
2022-06-02 11:52:23 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2021-11-06 03:57:33 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2023-08-14 10:26:52 +00:00
|
|
|
build-jdk:
|
|
|
|
uses: ./.github/workflows/fat-build.yml
|
|
|
|
|
2022-06-02 12:09:54 +00:00
|
|
|
build-test:
|
2021-11-06 03:57:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-08-14 10:26:52 +00:00
|
|
|
needs: build-jdk
|
2021-12-11 19:47:40 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
docker-compose-file:
|
|
|
|
- docker-compose.yml
|
2023-10-07 05:30:51 +00:00
|
|
|
- testing/docker-compose.hsqldb.yml
|
2021-12-11 20:20:59 +00:00
|
|
|
- testing/docker-compose.cockroachdb.yml
|
2022-02-28 22:46:02 +00:00
|
|
|
- testing/docker-compose.yugabytedb.yml
|
2022-06-02 11:33:07 +00:00
|
|
|
dockerfile:
|
2022-09-17 15:02:37 +00:00
|
|
|
- Dockerfile.ci
|
2023-06-01 18:39:27 +00:00
|
|
|
- Dockerfile.azul.ci
|
2023-10-10 21:52:26 +00:00
|
|
|
#- Dockerfile.openj9.ci
|
2023-04-27 12:05:05 +00:00
|
|
|
- Dockerfile.graalvm-jvm.ci
|
2023-08-14 09:55:31 +00:00
|
|
|
include:
|
|
|
|
- sleep: 20
|
|
|
|
- docker-compose-file: testing/docker-compose.cockroachdb.yml
|
|
|
|
sleep: 30
|
|
|
|
- docker-compose-file: testing/docker-compose.yugabytedb.yml
|
|
|
|
sleep: 120
|
2023-03-09 13:00:37 +00:00
|
|
|
fail-fast: false
|
2021-11-06 03:57:33 +00:00
|
|
|
steps:
|
2023-09-04 14:18:06 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-17 04:58:47 +00:00
|
|
|
- uses: actions/download-artifact@v4
|
2023-08-14 10:26:52 +00:00
|
|
|
with:
|
|
|
|
name: piped.jar
|
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
|
2022-09-17 15:02:37 +00:00
|
|
|
- name: Build Image Locally
|
2023-09-12 10:27:27 +00:00
|
|
|
uses: docker/build-push-action@v5
|
2022-02-22 09:16:45 +00:00
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
load: true
|
2022-06-02 11:33:07 +00:00
|
|
|
file: ${{ matrix.dockerfile }}
|
2022-02-22 09:16:45 +00:00
|
|
|
tags: 1337kavin/piped:latest
|
2021-11-06 03:57:33 +00:00
|
|
|
- name: Start Docker-Compose services
|
2023-08-14 09:55:31 +00:00
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep ${{ matrix.sleep }}
|
2021-11-06 03:57:33 +00:00
|
|
|
- name: Run tests
|
2021-12-11 19:47:40 +00:00
|
|
|
run: ./testing/api-test.sh
|
2022-06-02 11:48:40 +00:00
|
|
|
- name: Collect services logs
|
|
|
|
if: failure()
|
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} logs
|