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