-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new(ci): added gha support. #311
Changes from 7 commits
6e9c794
ef0efaf
9d8e3b0
1b8f768
65db5b7
891febe
3d4bac1
98d8ed7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: CI Build | ||
on: | ||
pull_request: | ||
branches: [master] | ||
workflow_dispatch: | ||
|
||
# Checks if any concurrent jobs under the same pull request or branch are being executed | ||
# NOTE: this will cancel every workflow that is being ran against a PR as group is just the github ref (without the workflow name) | ||
concurrency: | ||
group: ${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-test-dev: | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
uses: ./.github/workflows/reusable_build_test_driverkit.yml | ||
with: | ||
arch: ${{ matrix.arch }} | ||
|
||
gomodtidy: | ||
name: Enforce go.mod tidiness | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0 | ||
with: | ||
ref: "${{ github.event.pull_request.head.sha }}" | ||
repository: ${{github.event.pull_request.head.repo.full_name}} | ||
persist-credentials: false | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0 | ||
with: | ||
go-version: '1.21' | ||
check-latest: true | ||
|
||
- name: Execute go mod tidy and check the outcome | ||
working-directory: ./ | ||
run: | | ||
go mod tidy | ||
exit_code=$(git diff --exit-code) | ||
exit ${exit_code} | ||
|
||
- name: Print a comment in case of failure | ||
run: | | ||
echo "The go.mod and/or go.sum files appear not to be correctly tidied. | ||
|
||
Please, rerun go mod tidy to fix the issues." | ||
exit 1 | ||
if: | | ||
failure() && github.event.pull_request.head.repo.full_name == github.repository |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Master CI builds driverkit, push non-latest images and creates manifest to create multi arch docker image. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Master CI | ||
on: | ||
push: | ||
branches: [master] | ||
|
||
# Checks if any concurrent jobs is running for master CI and eventually cancel it | ||
concurrency: | ||
group: ci-master | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build-test-master: | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
uses: ./.github/workflows/reusable_build_test_driverkit.yml | ||
with: | ||
arch: ${{ matrix.arch }} | ||
|
||
push-images-master: | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
uses: ./.github/workflows/reusable_build_push_images.yml | ||
needs: build-test | ||
with: | ||
arch: ${{ matrix.arch }} | ||
secrets: inherit | ||
|
||
images-master: | ||
uses: ./.github/workflows/reusable_manifest_images.yml | ||
needs: push-images | ||
secrets: inherit | ||
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Release CI builds driverkit, push non-latest images and creates manifest to create multi arch docker image; finally, runs goreleaser to create the actual github release and attach release artifacts. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
permissions: | ||
contents: write # needed to write releases | ||
id-token: write # needed for keyless signing | ||
|
||
jobs: | ||
build-test-release: | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
uses: ./.github/workflows/reusable_build_test_driverkit.yml | ||
with: | ||
arch: ${{ matrix.arch }} | ||
|
||
push-images-release: | ||
strategy: | ||
matrix: | ||
arch: [amd64, arm64] | ||
uses: ./.github/workflows/reusable_build_push_images.yml | ||
needs: build-test | ||
with: | ||
arch: ${{ matrix.arch }} | ||
tag: ${{ github.ref_name }} | ||
is_latest: true | ||
secrets: inherit | ||
|
||
images-release: | ||
uses: ./.github/workflows/reusable_manifest_images.yml | ||
needs: push-images | ||
with: | ||
tag: ${{ github.ref_name }} | ||
is_latest: true | ||
secrets: inherit | ||
|
||
release: | ||
needs: images | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Fetch | ||
run: git fetch --prune --force --tags | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '1.21' | ||
|
||
- name: Install GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
install-only: true | ||
|
||
- name: Release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GIT_TAG: ${{ github.ref_name }} | ||
run: make release |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is already tested on the pull request CI.