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:
|
2022-06-02 17:39:54 +05:30
|
|
|
build-test:
|
2021-11-06 09:27:33 +05:30
|
|
|
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:
|
2022-09-17 20:32:37 +05:30
|
|
|
- Dockerfile.ci
|
|
|
|
- Dockerfile.openj9.ci
|
|
|
|
- Dockerfile.graalvm-jvm.ci
|
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
|
2022-09-17 20:32:37 +05:30
|
|
|
- name: set up JDK 17
|
|
|
|
uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: 17
|
|
|
|
distribution: temurin
|
|
|
|
check-latest: true
|
|
|
|
cache: "gradle"
|
|
|
|
- name: Run Build
|
|
|
|
run: ./gradlew shadowJar
|
|
|
|
- run: mv build/libs/piped-*-all.jar piped.jar
|
|
|
|
- name: Build Image Locally
|
|
|
|
uses: docker/build-push-action@v3
|
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
|
2022-06-02 17:39:54 +05:30
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep 20
|
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()
|
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} logs
|