-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
796 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
name: Docker-Compose Build and Test Migration | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "src/main/resources/changelog/**" | ||
- "src/main/java/me/kavin/piped/utils/obj/db/**" | ||
|
||
jobs: | ||
build-new: | ||
uses: ./.github/workflows/fat-build.yml | ||
build-old: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.pull_request.base.sha }} | ||
- name: set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
distribution: zulu | ||
cache: "gradle" | ||
- name: Run Build | ||
run: ./gradlew shadowJar | ||
- run: mv build/libs/piped-*-all.jar piped.jar | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: piped-old.jar | ||
path: piped.jar | ||
|
||
docker-build-test: | ||
needs: [ build-new, build-old ] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
docker-compose-file: | ||
- docker-compose.yml | ||
- testing/docker-compose.cockroachdb.yml | ||
- testing/docker-compose.yugabytedb.yml | ||
dockerfile: | ||
- Dockerfile.azul.ci | ||
include: | ||
- sleep: 20 | ||
- docker-compose-file: testing/docker-compose.cockroachdb.yml | ||
sleep: 30 | ||
- docker-compose-file: testing/docker-compose.yugabytedb.yml | ||
sleep: 120 | ||
fail-fast: false | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: echo "unknown" > VERSION | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: piped-old.jar | ||
- name: Build Old Image Locally | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
load: true | ||
file: ${{ matrix.dockerfile }} | ||
tags: 1337kavin/piped:latest | ||
- name: Start Docker-Compose services | ||
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep ${{ matrix.sleep }} | ||
- run: rm piped.jar | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: piped.jar | ||
- name: Build New Image Locally | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
load: true | ||
file: ${{ matrix.dockerfile }} | ||
tags: 1337kavin/piped:latest | ||
- name: Start Docker-Compose services | ||
run: docker-compose -f ${{ matrix.docker-compose-file }} up -d && sleep ${{ matrix.sleep }} | ||
- name: Run tests | ||
run: ./testing/api-test.sh | ||
- name: Collect services logs | ||
if: failure() | ||
run: docker-compose -f ${{ matrix.docker-compose-file }} logs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Fat JAR Build | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
distribution: zulu | ||
cache: "gradle" | ||
- name: Run Build | ||
run: ./gradlew shadowJar | ||
- run: mv build/libs/piped-*-all.jar piped.jar | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: piped.jar | ||
path: piped.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
FROM azul/zulu-openjdk:17-jre-headless-latest | ||
FROM azul/zulu-openjdk:21-jre-headless-latest | ||
|
||
RUN --mount=type=cache,target=/var/cache/apt/ \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
curl \ | ||
&& \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /app/ | ||
|
||
COPY hotspot-entrypoint.sh / | ||
COPY hotspot-entrypoint.sh docker-healthcheck.sh / | ||
|
||
COPY ./piped.jar /app/piped.jar | ||
|
||
COPY VERSION . | ||
|
||
EXPOSE 8080 | ||
|
||
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 CMD /docker-healthcheck.sh | ||
ENTRYPOINT ["/hotspot-entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,22 @@ | ||
FROM eclipse-temurin:17-jre | ||
FROM eclipse-temurin:21-jre | ||
|
||
RUN --mount=type=cache,target=/var/cache/apt/ \ | ||
apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
curl \ | ||
&& \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /app/ | ||
|
||
COPY hotspot-entrypoint.sh / | ||
COPY hotspot-entrypoint.sh docker-healthcheck.sh / | ||
|
||
COPY ./piped.jar /app/piped.jar | ||
|
||
COPY VERSION . | ||
|
||
EXPOSE 8080 | ||
|
||
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 CMD /docker-healthcheck.sh | ||
ENTRYPOINT ["/hotspot-entrypoint.sh"] |
Oops, something went wrong.