Skip to content

Commit

Permalink
chore(deps): update tools to latest versions (#3543)
Browse files Browse the repository at this point in the history
* chore(deps): update tools to latest versions

---------

Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: Christopher Phillips <[email protected]>
  • Loading branch information
1 parent 453c429 commit 2579216
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .binny.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ tools:
# used to release all artifacts
- name: goreleaser
version:
want: v2.4.8
want: v2.5.0
method: github-release
with:
repo: goreleaser/goreleaser
Expand Down Expand Up @@ -111,15 +111,15 @@ tools:
# used for triggering a release
- name: gh
version:
want: v2.63.2
want: v2.64.0
method: github-release
with:
repo: cli/cli

# used to upload test fixture cache
- name: oras
version:
want: v1.2.1
want: v1.2.2
method: github-release
with:
repo: oras-project/oras
Expand Down
7 changes: 3 additions & 4 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ vars:
sh: uname -s | tr '[:upper:]' '[:lower:]'
ARCH:
sh: |
[ "$(uname -m)" = "x86_64" ] && echo "amd64_v1" || echo $(uname -m)
[ "$(uname -m)" = "x86_64" ] && echo "amd64_v1" || { [ "$(uname -m)" = "aarch64" ] && echo "arm64_v8.0" || echo $(uname -m); }
PROJECT_ROOT:
sh: echo $PWD
# note: the snapshot dir must be a relative path starting with ./
Expand Down Expand Up @@ -237,8 +237,7 @@ tasks:
cmds:
- cmd: "echo 'testing binary: {{ .SNAPSHOT_BIN }}'"
silent: true

- cmd: "test -f {{ .SNAPSHOT_BIN }} || (find {{ .SNAPSHOT_DIR }} && echo '\nno snapshot found' && false)"
- cmd: "test -f {{ .SNAPSHOT_BIN }} || (find {{ .SNAPSHOT_DIR }} && echo '\nno snapshot found for {{ .SNAPSHOT_BIN }}' && false)"
silent: true

- "go test -count=1 -timeout=15m -v ./test/cli"
Expand Down Expand Up @@ -452,7 +451,7 @@ tasks:
total_size=$(find . | grep cache | grep tar | xargs du -c | grep total | awk '{print $1}')
find . | grep cache | grep tar | xargs du
echo "total $total_size KB"
if [ "$total_size" -gt 1048576 ]; then
echo 'docker cache is larger than 1GB'
exit 1
Expand Down
6 changes: 6 additions & 0 deletions test/install/3_install_asset_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ test_positive_snapshot_install_asset() {
local_suffix="_v8.0"
fi

# note: this is a change made in goreleaser v2.5.0
if [ "${arch}" == "ppc64le" ]; then
local_suffix="_power8"
fi


assertFilesEqual \
"$(snapshot_dir)/${os}-build_${os}_${arch}${local_suffix}/${binary}" \
"${expected_path}" \
Expand Down

0 comments on commit 2579216

Please sign in to comment.