mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
31 lines
594 B
YAML
31 lines
594 B
YAML
name: main
|
|
on:
|
|
workflow_run:
|
|
workflows: ["main - test"]
|
|
types:
|
|
- completed
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Code checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.workflow_run.head_branch }}
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19.5
|
|
check-latest: true
|
|
cache: true
|
|
|
|
- name: Build
|
|
run: |
|
|
make victoria-metrics-crossbuild
|
|
make vmuitils-crossbuild
|