Skip to content

tidy: rename daemon entrypoint folder to daemoncmd #1567

tidy: rename daemon entrypoint folder to daemoncmd

tidy: rename daemon entrypoint folder to daemoncmd #1567

Workflow file for this run

name: Tests and Build
on:
push:
branches: [main]
tags: [v*]
pull_request:
branches: [main]
env:
REGISTRY: ghcr.io
ALPINE_IMAGE_NAME: ghcr.io/webmeshproj/node
DISTROLESS_IMAGE_NAME: ghcr.io/webmeshproj/node-distroless
GO_VERSION: "1.21"
GOLANGCI_LINT_VERSION: v1.55.0
DOCKER_PLATFORMS: linux/amd64,linux/arm64,linux/arm,linux/386,linux/ppc64le,linux/s390x
CACHE_DEP_PATH: go.sum
LINT_TIMEOUT: 10m
WEBMESH_BADGER_GOROUTINES: 8
BUILD_PLATFORM: self-hosted
BUILD_PARALLELISM: 8
TEST_PARALLELISM: 8
WIN_TEST_PARALLELISM: 2
COSIGN_EXPERIMENTAL: 1
RICHGO_FORCE_COLOR: 1
jobs:
lint:
name: Static Analysis
runs-on: ${{ vars.LINUX_TEST_PLATFORM == '' && 'ubuntu-latest' || vars.LINUX_TEST_PLATFORM }}
permissions:
contents: "read"
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: false
- name: Run Linting
uses: golangci/golangci-lint-action@v3
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
args: --timeout ${{ env.LINT_TIMEOUT }}
skip-pkg-cache: ${{ vars.LINUX_TEST_PLATFORM == 'self-hosted' }}
tests:
name: Unit Tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os == 'ubuntu-latest' && vars.LINUX_TEST_PLATFORM || matrix.os }}
permissions:
contents: "read"
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: false
- name: Setup Test Cache
uses: actions/cache@v3
if: ${{ vars.LINUX_TEST_PLATFORM != 'self-hosted' || matrix.os != 'ubuntu-latest' }}
with:
key: ${{ runner.os }}-ci-tests-go-${{ env.GO_VERSION }}-${{ hashFiles(env.CACHE_DEP_PATH) }}
restore-keys: ${{ runner.os }}-ci-tests-go-${{ env.GO_VERSION }}-
path: |
~/go/pkg
~/go/bin
~/.cache/go-build
- name: Run Unit Tests
shell: bash
run: make ci-test
build-binaries:
name: Build Binary Artifacts
runs-on: ${{ vars.BUILD_PLATFORM == '' && 'ubuntu-latest' || vars.BUILD_PLATFORM }}
needs: [lint, tests]
permissions:
contents: "write"
id-token: "write"
packages: "write"
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: false
- name: Setup Build Cache
uses: actions/cache@v3
if: ${{ vars.BUILD_PLATFORM != 'self-hosted' }}
with:
key: ${{ runner.os }}-binaries-go-${{ env.GO_VERSION }}-${{ hashFiles(env.CACHE_DEP_PATH) }}
restore-keys: ${{ runner.os }}-binaries-go-${{ env.GO_VERSION }}-
path: |
~/go/pkg
~/.cache/go-build
- name: Setup Cosign
uses: sigstore/cosign-installer@main
- name: Run Snapshot Release
uses: goreleaser/goreleaser-action@v5
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
env:
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
with:
version: latest
args: release --snapshot --clean --fail-fast --skip-sign --parallelism=${{ env.BUILD_PARALLELISM }}
- name: Run Release
uses: goreleaser/goreleaser-action@v5
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
env:
GITHUB_TOKEN: ${{ github.token }}
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
with:
version: latest
args: release --clean --fail-fast --parallelism=${{ env.BUILD_PARALLELISM }}
- name: Update AUR Packages
shell: bash
if: ${{ vars.BUILD_PLATFORM == 'self-hosted' && startsWith(github.ref, 'refs/tags/v') }}
env:
VERSION: ${{ github.ref_name }}
run: |
set -ex
git clone ssh://[email protected]/webmesh-git.git
git clone ssh://[email protected]/webmesh-bin.git
cd webmesh-git
make all publish
cd ../webmesh-bin
make all publish
build-containers:
name: Build Containers
runs-on: ${{ vars.BUILD_PLATFORM == '' && 'ubuntu-latest' || vars.BUILD_PLATFORM }}
needs: [lint, tests]
permissions:
contents: "write"
id-token: "write"
packages: "write"
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
check-latest: true
cache: false
- name: Setup Build Cache
uses: actions/cache@v3
if: ${{ vars.BUILD_PLATFORM == '' }}
with:
key: ${{ runner.os }}-containers-go-${{ env.GO_VERSION }}-${{ hashFiles(env.CACHE_DEP_PATH) }}
restore-keys: ${{ runner.os }}-containers-go-${{ env.GO_VERSION }}-
path: |
~/go/pkg
~/.cache/go-build
- name: Setup Cosign
uses: sigstore/cosign-installer@main
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Setup Buildx
uses: docker/setup-buildx-action@v3
- name: Compute Image Tags
shell: bash
id: image-tags
run: |
ALPINE_IMAGES="${{ env.ALPINE_IMAGE_NAME }}:latest,${{ env.ALPINE_IMAGE_NAME }}:${{ github.sha }}"
DISTROLESS_IMAGES="${{ env.DISTROLESS_IMAGE_NAME }}:latest,${{ env.DISTROLESS_IMAGE_NAME }}:${{ github.sha }}"
if [[ ${{ github.ref }} =~ ^refs/tags/v.* ]] ; then
ALPINE_IMAGES+=",${{ env.ALPINE_IMAGE_NAME }}:${{ github.ref_name }}"
DISTROLESS_IMAGES+=",${{ env.DISTROLESS_IMAGE_NAME }}:${{ github.ref_name }}"
fi
echo "alpine-images=${ALPINE_IMAGES}" >> "${GITHUB_OUTPUT}"
echo "distroless-images=${DISTROLESS_IMAGES}" >> "${GITHUB_OUTPUT}"
- name: Run Snapshot Container Release
uses: goreleaser/goreleaser-action@v5
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
with:
version: latest
args: build --snapshot --clean --id node-docker-linux --parallelism=${{ env.BUILD_PARALLELISM }}
- name: Run Container Release
uses: goreleaser/goreleaser-action@v5
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
with:
version: latest
args: build --clean --id node-docker-linux --parallelism=${{ env.BUILD_PARALLELISM }}
- name: Login to GHCR
uses: docker/login-action@v3
if: ${{ github.event_name != 'pull_request' }}
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build Alpine Container Images
uses: docker/build-push-action@v5
id: alpine-build
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.image-tags.outputs.alpine-images }}
platforms: ${{ env.DOCKER_PLATFORMS }}
build-args: PREFIX=node-docker-linux
- name: Build Distroless Container Images
uses: docker/build-push-action@v5
id: distroless-build
with:
context: .
file: Dockerfile.distroless
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.image-tags.outputs.distroless-images }}
platforms: ${{ env.DOCKER_PLATFORMS }}
build-args: PREFIX=node-docker-linux
- name: Sign Container Images
if: ${{ github.event_name != 'pull_request' }}
run: |
cosign sign --yes --recursive ${{ env.ALPINE_IMAGE_NAME }}@${{ steps.alpine-build.outputs.digest }}
cosign sign --yes --recursive ${{ env.DISTROLESS_IMAGE_NAME }}@${{ steps.distroless-build.outputs.digest }}