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:
|
2022-06-02 12:09:54 +00:00
|
|
|
build-test:
|
2021-11-06 03:57:33 +00:00
|
|
|
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-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
|
|
|
|
- Dockerfile.openj9.ci
|
|
|
|
- Dockerfile.graalvm-jvm.ci
|
2021-11-06 03:57:33 +00:00
|
|
|
steps:
|
2022-03-02 13:08:41 +00:00
|
|
|
- uses: actions/checkout@v3
|
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: 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 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
|
2022-06-02 12:09:54 +00:00
|
|
|
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep 20
|
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
|