Refactor workflow #104
Workflow file for this run
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
name: Halo CI | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
paths: | |
- "**" | |
- "!**.md" | |
push: | |
branches: | |
- main | |
- release-* | |
paths: | |
- "**" | |
- "!**.md" | |
release: | |
types: | |
- published | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Setup Environment | |
# uses: ./.github/actions/setup-env | |
# - name: Check Halo console | |
# run: make -C console check | |
# - name: Check Halo core | |
# run: ./gradlew check | |
# - name: Analyze code | |
# if: ${{ github.event_name == 'push' && env.SONAR_TOKEN != '' }} # Due to inability to access secrets during PR, only the code pushed into the branch can be analyzed. | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
# run: ./gradlew sonar --info | |
build: | |
runs-on: ubuntu-latest | |
needs: test | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Environment | |
uses: ./.github/actions/setup-env | |
- name: Build Halo console | |
run: make -C console build | |
- name: Reset version of Halo | |
if: github.event_name == 'release' | |
shell: bash | |
run: | | |
# Set the version with tag name when releasing | |
version=${{ github.event.release.tag_name }} | |
version=${version#v} | |
sed -i "s/version=.*-SNAPSHOT$/version=$version/1" gradle.properties | |
- name: Build Halo core | |
run: ./gradlew clean && ./gradlew downloadPluginPresets && ./gradlew build -x check | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: halo-artifacts | |
path: application/build/libs | |
retention-days: 1 | |
github-release: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'release' | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: halo-artifacts | |
path: application/build/libs | |
- name: Upload Artifacts | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh release upload ${{ github.event.release.tag_name }} application/build/libs/* | |
docker-build-and-push: | |
if: github.event_name == 'push' || github.event_name == 'release' | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: halo-artifacts | |
path: application/build/libs | |
- name: Docker Buildx and Push | |
uses: ./.github/actions/docker-buildx-push | |
with: | |
image-name: ${{ github.event_name == 'release' && 'halo' || 'halo-dev' }} | |
ghcr-token: ${{ secrets.GHCR_TOKEN }} | |
dockerhub-user: ${{ secrets.DOCKER_USERNAME }} | |
dockerhub-token: ${{ secrets.DOCKER_TOKEN }} | |
push: true # we only push to GHCR if the push is to the next branch | |
console-ref: ${{ github.event_name == 'release' && github.ref || 'main' }} | |
platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x | |
e2e-test: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: halo-artifacts | |
path: application/build/libs | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v3 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v3 | |
- name: Docker Build | |
uses: docker/build-push-action@v5 | |
with: | |
tags: ghcr.io/halo-dev/halo-dev:main | |
push: false | |
context: . | |
- name: E2E Testing | |
run: | | |
sudo curl -L https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose | |
sudo chmod u+x /usr/local/bin/docker-compose | |
cd e2e && make all |