mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
59b97f26c0
* split js and go codeql, split test and build, enable matrix for test * checkout before go setup * enable build for PRs as well * update filter
29 lines
520 B
YAML
29 lines
520 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
|
|
|
|
- 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
|