Fix CI builds by moving to self-hosted runners #154
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: Release | |
on: | |
create: | |
tags: | |
- v* | |
pull_request: | |
branches: | |
- "main" | |
env: | |
GOPRIVATE: fox.flant.com | |
PRIVATE_REPO: fox.flant.com | |
PRIVATE_REPO_TOKEN: ${{ secrets.PRIVATE_REPO_TOKEN }} | |
permissions: | |
contents: write | |
jobs: | |
release: | |
if: startsWith(github.ref, 'refs/tags/v') | |
runs-on: [self-hosted, regular] | |
container: | |
image: ubuntu:22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # To use `git describe --tags` | |
- name: Install dependency for linux-amd64 dist | |
run: apt-get install -y apt-utils libbtrfs-dev file | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Setup Task | |
uses: arduino/setup-task@v2 | |
- name: Setup private repo | |
run: git config --global url."https://gitlab-ci-token:${PRIVATE_REPO_TOKEN}@${PRIVATE_REPO}/".insteadOf https://${PRIVATE_REPO}/ | |
- name: Build and package | |
run: task build-and-package | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
dist/**/*.tar.gz | |
dist/**/*.tar.gz.sha256sum | |
test: | |
if: github.event_name == 'pull_request' | |
runs-on: [self-hosted, regular] | |
container: | |
image: ubuntu:22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # To use `git describe --tags` | |
- name: Install dependency for linux-amd64 dist | |
run: apt-get install -y apt-utils libbtrfs-dev file | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
- name: Setup Task | |
uses: arduino/setup-task@v2 | |
- name: Setup private repo | |
run: git config --global url."https://gitlab-ci-token:${PRIVATE_REPO_TOKEN}@${PRIVATE_REPO}/".insteadOf https://${PRIVATE_REPO}/ | |
- name: Run tests | |
run: task test |