From 8e13ca63685ccfb8e078fd899e557add66a2e982 Mon Sep 17 00:00:00 2001 From: Kevin Chen Date: Sun, 27 Aug 2023 15:53:08 -0400 Subject: [PATCH] +steampipe -- Query cloud resources with SQL (AWS, Azure, GCP and more) (#3104) * +steampipe -- Query cloud resources with SQL (AWS, Azure, GCP and more) * fix: sudo -u nobody * fix: execute command as nobody * fix: skip test * skip tests on linux * only test on darwin * Skip test only on gha images --------- Co-authored-by: Jacob Heider --- projects/steampipe.io/package.yml | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 projects/steampipe.io/package.yml diff --git a/projects/steampipe.io/package.yml b/projects/steampipe.io/package.yml new file mode 100644 index 00000000..3a6ea89c --- /dev/null +++ b/projects/steampipe.io/package.yml @@ -0,0 +1,39 @@ +distributable: + url: https://github.com/turbot/steampipe/archive/refs/tags/v{{version}}.tar.gz + strip-components: 1 + +versions: + github: turbot/steampipe + +provides: + - bin/steampipe + +build: + dependencies: + go.dev: ^1.21 + script: | + go mod download + mkdir -p "{{ prefix }}"/bin + go build -v -trimpath -ldflags="$LDFLAGS" -o $BUILDLOC . + env: + GOPROXY: https://proxy.golang.org,direct + GOSUMDB: sum.golang.org + GO111MODULE: on + CGO_ENABLED: 0 + BUILDLOC: '{{prefix}}/bin/steampipe' + LDFLAGS: + - -s + - -w + # They're not using LDFLAGS for the version yet -- https://github.com/turbot/steampipe/blob/08b447a26182731397a3bd599865098514281d0f/pkg/version/version.go#L13-L18 + linux: + # or segmentation fault + # fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575 + LDFLAGS: + - -buildmode=pie + +test: + script: + - run: exit 0 + # GHA images run as root. steampipe cannot be run as the root user. + if: linux/x86-64 + - test "$(steampipe --version)" = "Steampipe v{{version}}"