* ci: create gh action that installs go from go.mod * ci: create gh action that installs ubuntu dependencies * ci: create gh workflow that runs go build * ci: test the build workflow * Revert "ci: test the build workflow" This reverts commit 8150510aae4d6d1fb1d719e2d69057a3c0695d32.
11 lines
266 B
YAML
11 lines
266 B
YAML
name: Install Ubuntu Dependencies
|
|
description: Install Ubuntu dependencies for Filecoin Lotus
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y ocl-icd-opencl-dev libhwloc-dev pkg-config
|
|
shell: bash
|