-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
0c13bbc
commit ec3f898
Showing
6 changed files
with
200 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Subject | ||
|
||
- Please write the development content. | ||
|
||
## Changes Description | ||
|
||
- Please write the main changes or the contents to be referred to in the review. | ||
|
||
## How to test | ||
|
||
- Please describe the prerequisites and the steps to test | ||
|
||
## Evident for results | ||
|
||
- Please attach images or videos to confirm the right result | ||
|
||
## Referenced Ticket | ||
|
||
- https://cardanofoundation.atlassian.net/browse/LOB- |
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,67 @@ | ||
name: Run Tests | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres:16.3 | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'corretto' | ||
|
||
- name: Test | ||
run: | | ||
./gradlew clean test | ||
mutation-test: | ||
needs: test | ||
runs-on: ubuntu-latest | ||
services: | ||
postgres: | ||
image: postgres | ||
env: | ||
POSTGRES_USER: postgres | ||
POSTGRES_PASSWORD: postgres | ||
POSTGRES_DB: postgres | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'corretto' | ||
|
||
- name: PiTest | ||
run: | | ||
./gradlew clean pitest | ||
- name: Publish mutation test report to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
if: github.ref == 'refs/heads/main' | ||
with: | ||
BRANCH: gh-pages | ||
folder: build/reports/pitest/ | ||
target-folder: mutation-report/ |
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,93 @@ | ||
name: Build | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, synchronize ] | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
env: | ||
PRIVATE_DOCKER_REGISTRY_URL: ${{ secrets.GITLAB_DOCKER_REGISTRY_URL }} | ||
PRIVATE_DOCKER_REGISTRY_USER: Deploy-Token | ||
PRIVATE_DOCKER_REGISTRY_PASS: ${{ secrets.GITLAB_PKG_REGISTRY_TOKEN }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '21' | ||
distribution: 'corretto' | ||
|
||
- name: Build | ||
run: | | ||
./gradlew build -x test | ||
publish: | ||
permissions: | ||
contents: read | ||
packages: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set extra environment and metadata | ||
id: metadata | ||
run: | | ||
GIT_SHORT_COMMIT=$(git rev-parse --short "$GITHUB_SHA") | ||
CURRENT_VERSION=$(grep '^ version' build.gradle.kts | sed 's|.*version.*=.*"\(.*\)"$|\1|') | ||
if [ ${{github.event_name}} == "pull_request" ] | ||
then | ||
PR_NUMBER=$(echo $GITHUB_REF | awk -F/ '{ print $3 }') | ||
ARTIFACT_VERSION="${CURRENT_VERSION}-PR${PR_NUMBER}" | ||
echo "ARTIFACT_VERSION=${ARTIFACT_VERSION}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
else | ||
BRANCH=${GITHUB_REF_NAME} | ||
SANITIZED_BRANCH=$(echo $BRANCH | sed 's|/|-|g') | ||
echo "BRANCH=${BRANCH}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
echo "SANITIZED_BRANCH=${SANITIZED_BRANCH}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
ARTIFACT_VERSION=${CURRENT_VERSION}-${SANITIZED_BRANCH} | ||
echo "ARTIFACT_VERSION=${ARTIFACT_VERSION}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
fi | ||
echo "DOCKER_COMMIT_TAG=${ARTIFACT_VERSION}-${GIT_SHORT_COMMIT}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
echo "DOCKER_COMMIT_GHRUNID_TAG=${ARTIFACT_VERSION}-${GIT_SHORT_COMMIT}-${GITHUB_RUN_ID}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
echo "EARTHLY_BUILD_ARGS=DOCKER_IMAGES_EXTRA_TAGS=${ARTIFACT_VERSION}-${GIT_SHORT_COMMIT} ${ARTIFACT_VERSION}-${GIT_SHORT_COMMIT}-${GITHUB_RUN_ID}" | tee -a "$GITHUB_ENV" | tee -a "$GITHUB_OUTPUT" | ||
- name: Docker Login (private registry) | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.PRIVATE_DOCKER_REGISTRY_URL }} | ||
username: ${{ env.PRIVATE_DOCKER_REGISTRY_USER }} | ||
password: ${{ env.PRIVATE_DOCKER_REGISTRY_PASS }} | ||
|
||
#- name: Docker Login (hub.docker.com) | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# username: ${{ secrets.HUB_DOCKER_COM_USER }} | ||
# password: ${{ secrets.HUB_DOCKER_COM_PASS }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- uses: earthly/actions-setup@v1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
version: "0.8.6" | ||
|
||
- name: 🌍 earthly (docker build and push) | ||
env: | ||
EARTHLY_BUILD_ARGS: ${{ steps.metadata.outputs.EARTHLY_BUILD_ARGS }},DOCKER_REGISTRIES=${{ secrets.DOCKER_REGISTRIES }} | ||
run: | | ||
earthly +docker-publish --PUSH=true |
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