-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from nyx-space/bypass-run-on-arch-ci-issue
Disable run on arch
- Loading branch information
Showing
1 changed file
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,22 +69,22 @@ jobs: | |
pip install hifitime --find-links dist --force-reinstall --no-index -vv | ||
pip install pytest | ||
pytest | ||
- name: pytest | ||
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }} | ||
uses: uraimo/[email protected] | ||
with: | ||
arch: ${{ matrix.target }} | ||
distro: ubuntu22.04 | ||
githubToken: ${{ github.token }} | ||
install: | | ||
apt-get update | ||
apt-get install -y --no-install-recommends python3 python3-pip | ||
pip3 install -U pip pytest | ||
run: | | ||
set -e | ||
ls dist | ||
pip3 install hifitime --find-links dist --force-reinstall --no-index -vv | ||
pytest | ||
# - name: pytest | ||
# if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }} | ||
# uses: uraimo/[email protected] | ||
# with: | ||
# arch: ${{ matrix.target }} | ||
# distro: ubuntu22.04 | ||
# githubToken: ${{ github.token }} | ||
# install: | | ||
# apt-get update | ||
# apt-get install -y --no-install-recommends python3 python3-pip | ||
# pip3 install -U pip pytest | ||
# run: | | ||
# set -e | ||
# ls dist | ||
# pip3 install hifitime --find-links dist --force-reinstall --no-index -vv | ||
# pytest | ||
|
||
windows: | ||
runs-on: windows-latest | ||
|