Skip to content

(feat) add simple procexec tool #25

(feat) add simple procexec tool

(feat) add simple procexec tool #25

Workflow file for this run

name : Build
permissions:
contents : read
on:
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
- ".gitignore"
- "CODEOWNERS"
- "LICENSE"
push:
branches:
- main
env:
OCB_VERSION : "0.119.0"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses : actions/setup-go@v5
with:
go-version: ">=1.23.0"
- name : Install build dependencies
run : |
wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/cmd%2Fbuilder%2Fv${OCB_VERSION}/ocb_${OCB_VERSION}_linux_amd64
mv -v ocb_${OCB_VERSION}_linux_amd64 /usr/local/bin/ocb
chmod +x /usr/local/bin/ocb
echo "/usr/local/bin/" >> $GITHUB_PATH
- name : Build
run: make build