Skip to content

Commit

Permalink
skip diff step on arm
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusroemer committed Jul 12, 2024
1 parent c5d09d5 commit 0ff11b4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ jobs:
- name: Generate summary
run: |
if [[ "$(uname -m)" == "arm64" ]]; then
echo "Skip on arm64 until the package is published" >&2
exit 0
fi
./devel/download-latest
./devel/diff-pkgs nextstrain-base-*.conda build/locked/*/nextstrain-base-*.conda \
> "$GITHUB_STEP_SUMMARY"
Expand Down
2 changes: 1 addition & 1 deletion devel/diff-pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Diffs two .conda packages, emitting plain text output which can be treated as
# Markdown.
set -exuo pipefail
set -euo pipefail

source "$(dirname "$0")/_common"
export PATH="$env/bin:$PATH"
Expand Down

0 comments on commit 0ff11b4

Please sign in to comment.