mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
21f80fa137
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
52 lines
1.5 KiB
YAML
52 lines
1.5 KiB
YAML
name: main
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@main
|
|
with:
|
|
go-version: 1.17
|
|
id: go
|
|
- name: Code checkout
|
|
uses: actions/checkout@master
|
|
- name: Dependencies
|
|
run: |
|
|
make install-golint
|
|
make install-errcheck
|
|
make install-golangci-lint
|
|
- name: Build
|
|
env:
|
|
GO111MODULE: on
|
|
run: |
|
|
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
|
|
make check-all
|
|
git diff --exit-code
|
|
make test-full
|
|
make test-pure
|
|
make test-full-386
|
|
make vminsert vmselect vmstorage
|
|
make vminsert-pure vmselect-pure vmstorage-pure
|
|
make vmutils
|
|
GOOS=freebsd go build -mod=vendor ./app/vminsert
|
|
GOOS=freebsd go build -mod=vendor ./app/vmselect
|
|
GOOS=freebsd go build -mod=vendor ./app/vmstorage
|
|
GOOS=openbsd go build -mod=vendor ./app/vminsert
|
|
GOOS=openbsd go build -mod=vendor ./app/vmselect
|
|
GOOS=openbsd go build -mod=vendor ./app/vmstorage
|
|
GOOS=darwin go build -mod=vendor ./app/vminsert
|
|
GOOS=darwin go build -mod=vendor ./app/vmselect
|
|
GOOS=darwin go build -mod=vendor ./app/vmstorage
|