-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MAINT] Trying to re-enable testing for non-x86 archs #3149
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
ce8e9a1
Allow for optional scaling back of encore optimisations
IAlibay 79db3fd
Re-enable ppc64le and arm64 testing
IAlibay 1879bba
try fixing conda build in ppc64le
IAlibay 21f31b9
trying using deprecated source
IAlibay 4eb8773
What's in the bashrc?
IAlibay 4d81d4e
try moving out of matrix block
IAlibay 2ce2825
focal seems to be stalling the ppc64le build
IAlibay ff22957
Try triggering Travis again
IAlibay 9463ec8
Try emulating bashrc behaviour
IAlibay 0bb6242
fix conda install line
IAlibay 463a017
Add yes to install
IAlibay 9f757b3
Fix pytest call
IAlibay 39a3ae7
Up the scipy version
IAlibay 099112b
reduce number of runners to prevent crashes
IAlibay 9618cc0
Try cron type switch
IAlibay eb70d25
update changelog
IAlibay 266bf61
small issue update
IAlibay File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
version: ~> 1.0 | ||
language: generic | ||
group: travis_latest | ||
|
||
# Only build for develop | ||
branches: | ||
only: | ||
- develop | ||
|
||
matrix: | ||
fast_finish: true | ||
include: | ||
- python: 3.8 | ||
name: "Power PC" | ||
os: linux | ||
arch: ppc64le | ||
if: type = cron | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'll be honest, I'm not 100% sure this will work. I have enabled the cron job on |
||
before_install: | ||
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-ppc64le.sh -O miniconda.sh | ||
- mkdir $HOME/.conda | ||
- bash miniconda.sh -b -p $HOME/miniconda | ||
- $HOME/miniconda/bin/conda init bash | ||
# for some reason the image does not like sourcing .bashrc | ||
- . "/home/travis/miniconda/etc/profile.d/conda.sh" | ||
- conda activate base | ||
- conda update --yes conda | ||
- conda install --yes pip pytest==6.1.2 mmtf-python biopython networkx cython matplotlib-base "scipy>=1.6" griddataformats hypothesis gsd codecov -c conda-forge -c biobuilds | ||
- pip install pytest-xdist | ||
- conda info | ||
install: | ||
- (cd package/ && python setup.py develop) && (cd testsuite/ && python setup.py install) | ||
script: | ||
- pytest testsuite/MDAnalysisTests --disable-pytest-warnings -n 2 | ||
after_sucess: | ||
- echo "Override this stage for now" | ||
|
||
- os: linux | ||
language: python | ||
arch: arm64-graviton2 | ||
python: 3.8 | ||
name: "ARM64" | ||
dist: focal | ||
virt: vm | ||
group: edge | ||
if: type = cron | ||
before_install: | ||
- python -m pip install cython numpy scipy | ||
- python -m pip install --no-build-isolation hypothesis matplotlib pytest pytest-cov pytest-xdist tqdm | ||
install: | ||
- cd package | ||
- python setup.py install | ||
- cd ../testsuite | ||
- python setup.py install | ||
- cd .. | ||
script: | ||
- cd testsuite | ||
- python -m pytest ./MDAnalysisTests --disable-pytest-warnings -n 8 -rsx --cov=MDAnalysis | ||
after_success: | ||
- echo "Override this stage for ARM64" | ||
|
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can probably add s390x here for the sake of #1389, but is IBM Z really that prevalent? I guess the z15 was released in 2019, but I can't think of a single cluster that uses it? (definitely nothing in the top500 list)