action-env/.forgejo/workflows/build.yml
Vitaliy Potyarkin 6369133877 alya: Trigger CI
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
2024-12-25 15:56:27 +03:00

44 lines
957 B
YAML

name: Build
on:
push:
pull_request:
jobs:
build:
name: Build Components
runs-on: temporary-out-of-service
container: node:16-bullseye
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