Evgenii Stratonikov
6ae8667fb4
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 3m9s
DCO action / DCO (pull_request) Successful in 3m59s
Tests and linters / gopls check (pull_request) Successful in 4m22s
Tests and linters / Run gofumpt (pull_request) Successful in 4m31s
Tests and linters / Lint (pull_request) Successful in 4m42s
Pre-commit hooks / Pre-commit (pull_request) Successful in 4m58s
Build / Build Components (pull_request) Successful in 5m9s
Tests and linters / Staticcheck (pull_request) Successful in 5m7s
Tests and linters / Tests with -race (pull_request) Successful in 5m11s
Tests and linters / Tests (pull_request) Successful in 5m41s
Tests and linters / Run gofumpt (push) Successful in 2m31s
Vulncheck / Vulncheck (push) Successful in 2m40s
Pre-commit hooks / Pre-commit (push) Successful in 3m4s
Build / Build Components (push) Successful in 3m13s
Tests and linters / Staticcheck (push) Successful in 3m22s
Tests and linters / Lint (push) Successful in 3m47s
Tests and linters / gopls check (push) Successful in 3m48s
Tests and linters / Tests (push) Successful in 4m18s
Tests and linters / Tests with -race (push) Successful in 4m22s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
45 lines
943 B
YAML
45 lines
943 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Components
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go_versions: [ '1.22', '1.23' ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
# Allows to fetch all history for all branches and tags.
|
|
# Need this for proper versioning.
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '${{ matrix.go_versions }}'
|
|
|
|
- name: Build CLI
|
|
run: make bin/frostfs-cli
|
|
- run: bin/frostfs-cli --version
|
|
|
|
- name: Build NODE
|
|
run: make bin/frostfs-node
|
|
|
|
- name: Build IR
|
|
run: make bin/frostfs-ir
|
|
|
|
- name: Build ADM
|
|
run: make bin/frostfs-adm
|
|
- run: bin/frostfs-adm --version
|
|
|
|
- name: Build LENS
|
|
run: make bin/frostfs-lens
|
|
- run: bin/frostfs-lens --version
|