Skip to content
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

Remove Travis CI #103

Merged
merged 7 commits into from
Apr 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,17 @@ jobs:
setup_test:
name: Run setup test
runs-on: ubuntu-latest
container: precice/ci-ubuntu-1804
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install & upgrade pip3
- name: Install & upgrade pip3 and install OpenMPI
run: |
apt-get -yy update
apt-get install -y python3-pip
rm -rf /var/lib/apt/lists/*
sudo apt-get -yy update
sudo apt-get install -y python3-pip libopenmpi-dev
sudo rm -rf /var/lib/apt/lists/*
Comment on lines +77 to +81
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Related to #101: We should be able to remove the mpi part here.

But for the current state everything is fine.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, will keep this dependency problem in mind.

pip3 install --upgrade --user pip
- name: Checkout precice and make required files discoverable
run: |
run: |
git clone https://github.com/precice/precice.git precice-core
mkdir -p precice
cp precice-core/src/precice/SolverInterface.hpp precice/SolverInterface.hpp
Expand Down
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
Python language bindings for the C++ library preCICE
----------------------------------------------------

<a style="text-decoration: none" href="https://travis-ci.com/precice/python-bindings" target="_blank">
<img src="https://travis-ci.com/precice/python-bindings.svg?branch=develop" alt="Build status">
</a>

[![Upload Python Package](https://github.com/precice/python-bindings/workflows/Upload%20Python%20Package/badge.svg?branch=master)](https://pypi.org/project/pyprecice/)

This package provides python language bindings for the C++ library [preCICE](https://github.com/precice/precice). Note that the first three digits of the version number of the bindings indicate the preCICE version that the bindings support. The last digit represents the version of the bindings. Example: `v2.0.0.1` and `v2.0.0.2` of the bindings represent versions `1` and `2` of the bindings that are compatible with preCICE `v2.0.0`.
Expand Down