mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
78838de69e
hangs but doesn't segfault. works fine on archlinux. i blame gha.
38 lines
937 B
YAML
38 lines
937 B
YAML
distributable:
|
|
url: git+https://github.com/Azure/azure-storage-azcopy.git
|
|
ref: ${{version.tag}}
|
|
|
|
versions:
|
|
github: Azure/azure-storage-azcopy
|
|
|
|
build:
|
|
dependencies:
|
|
go.dev: '>=1.19'
|
|
script: go build $ARGS -ldflags="$LDFLAGS"
|
|
env:
|
|
ARGS:
|
|
- -trimpath
|
|
- -o={{prefix}}/bin/azcopy
|
|
LDFLAGS:
|
|
- -s
|
|
- -w
|
|
linux:
|
|
LDFLAGS:
|
|
- -buildmode=pie
|
|
|
|
provides:
|
|
- bin/azcopy
|
|
|
|
test:
|
|
- azcopy --version | grep {{version}}
|
|
# FIXME: these hang forever on GHA linux+x86-64 runners...
|
|
- run: exit 0
|
|
if: linux/x86-64
|
|
|
|
- azcopy list https://storageaccountname.blob.core.windows.net/containername/ || true
|
|
- azcopy list https://storageaccountname.blob.core.windows.net/containername/ > output.txt || true
|
|
- run: cat output.txt | grep 'Login Credentials missing'
|
|
if: '<10.23'
|
|
- run: cat output.txt | grep 'This request is not authorized to perform this operation'
|
|
if: '>=10.23'
|