Evgenii Stratonikov
a724debb19
All checks were successful
DCO action / DCO (pull_request) Successful in 1m57s
Vulncheck / Vulncheck (pull_request) Successful in 2m47s
Build / Build Components (1.20) (pull_request) Successful in 3m46s
Tests and linters / Staticcheck (pull_request) Successful in 4m25s
Tests and linters / Tests (1.20) (pull_request) Successful in 5m51s
Tests and linters / Tests with -race (pull_request) Successful in 5m59s
Tests and linters / Tests (1.21) (pull_request) Successful in 6m9s
Build / Build Components (1.21) (pull_request) Successful in 11m38s
Tests and linters / Lint (pull_request) Successful in 17m16s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
41 lines
905 B
YAML
41 lines
905 B
YAML
name: Build
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Components
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go_versions: [ '1.20', '1.21' ]
|
|
|
|
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
|