2022-08-03 10:01:36 -04:00
|
|
|
name: Build debugd
|
|
|
|
description: Build the Constellation debugd binary
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
outputPath:
|
2022-09-02 06:44:20 -04:00
|
|
|
description: "Output path of the binary"
|
|
|
|
default: "./debugd"
|
2022-08-03 10:01:36 -04:00
|
|
|
required: true
|
|
|
|
|
|
|
|
runs:
|
2022-09-02 06:44:20 -04:00
|
|
|
using: "composite"
|
2022-08-03 10:01:36 -04:00
|
|
|
steps:
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a
|
|
|
|
with:
|
|
|
|
go-version: "1.18"
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
shell: bash
|
2022-09-02 06:44:20 -04:00
|
|
|
run: |
|
|
|
|
echo "::group::Install build dependencies"
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install cmake make
|
|
|
|
echo "::endgroup::"
|
|
|
|
|
2022-08-03 10:01:36 -04:00
|
|
|
- name: Build debugd
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2022-09-02 06:44:20 -04:00
|
|
|
echo "::group::Build debugd"
|
2022-08-03 10:01:36 -04:00
|
|
|
homedir="$(getent passwd $(id -u) | cut -d ":" -f 6)"
|
|
|
|
mkdir -p build && cd build
|
|
|
|
cmake ..
|
|
|
|
export GOCACHE=${homedir}/.cache/go-build
|
|
|
|
export GOPATH=${homedir}/go
|
|
|
|
export GOPRIVATE=github.com/edgelesssys
|
|
|
|
export GOMODCACHE=${homedir}/.cache/go-mod
|
|
|
|
make debugd cdbg
|
|
|
|
mv -n debugd "${{ inputs.outputPath }}"
|
2022-09-02 06:44:20 -04:00
|
|
|
echo "::endgroup::"
|