Skip to content

Commit

Permalink
Fix bors
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanieu committed Dec 22, 2021
1 parent ab7cd5b commit 25fe7e0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,3 +255,16 @@ jobs:
export PATH="$HOME/.pyenv/versions/$(cat .python-version)/bin:$PATH"
if test -d .env/bin/; then source .env/bin/activate; else source .env/Scripts/activate; fi
just publish testpypi $(ls artifacts/wheels-*/*.whl | tr '/' '\t' | sort -k 3 | uniq -f 2 | tr '\t' '/' | grep --invert-match aarch64)
build-status:
if: always() && github.event_name == 'push'
runs-on: ubuntu-latest
needs: [test]

steps:
- name: Mark the job as succeeded
if: needs.test.result == 'success'
run: exit 0
- name: Mark the job as failed
if: needs.test.result != 'success'
run: exit 1
2 changes: 1 addition & 1 deletion bors.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
status = ["Build and Test %"]
status = ["build-status"]
required_approvals = 0
timeout_sec = 900
delete_merged_branches = true

0 comments on commit 25fe7e0

Please sign in to comment.