72 lines
1.7 KiB
YAML
72 lines
1.7 KiB
YAML
---
|
|
name: "Build Snapshot"
|
|
|
|
on:
|
|
- push
|
|
- workflow_dispatch
|
|
|
|
jobs:
|
|
build-snapshot:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
|
id: qemu
|
|
uses: docker/setup-qemu-action@v2
|
|
with:
|
|
image: tonistiigi/binfmt:latest
|
|
platforms: arm64,arm
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
cache: 'npm'
|
|
cache-dependency-path: webui.dev/package-lock.json
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '^1.18.0'
|
|
cache: true
|
|
|
|
- name: grpc
|
|
run: make -w grpc
|
|
|
|
- name: make daemon
|
|
run: make -w daemon-compile-x64-lin
|
|
|
|
- name: unit tests
|
|
run: make -w daemon-unittests
|
|
|
|
- name: integration tests
|
|
run: cd integration-tests && make -w
|
|
|
|
- name: goreleaser
|
|
uses: goreleaser/goreleaser-action@v4.2.0
|
|
with:
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --snapshot --clean --parallelism 1 --skip-docker
|
|
|
|
- name: get date
|
|
run: |
|
|
echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_ENV"
|
|
|
|
- name: Archive binaries
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: "OliveTin-snapshot-${{ env.DATE }}-${{ github.sha }}"
|
|
path: dist/OliveTin*.*
|
|
|
|
- name: Archive integration tests
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: "OliveTin-integration-tests-${{ env.DATE }}-${{ github.sha }}"
|
|
path: |
|
|
integration-tests
|
|
!integration-tests/node_modules
|