Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • eclipse-research-labs/nephele-project/nephele-hdar
  • khanadnan/nephele-hdar
2 results
Show changes
Commits on Source (2)
......@@ -69,6 +69,14 @@ cp install/.env-tests .env
export $(grep -v '^#' .env | xargs)
./hdarctl
```
or Manually (macOS M3/Apple Silicon)
```bash
GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 go build -v -a -installsuffix cgo -o hdarctl .
# adapt env vars
cp install/.env-tests .env
export $(grep -v '^#' .env | xargs)
./hdarctl
```
B) Create docker image locally or pull the one generated by the CICD pipeline
......