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

CI on more ubuntus, pip install numpy #272

Merged
merged 4 commits into from
Aug 28, 2024
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
5 changes: 2 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ on:

jobs:
tests:
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
dist:
- py3_casacore_master
steps:
Expand All @@ -22,5 +23,3 @@ jobs:

- name: Build container
run: docker build . -t ${{ matrix.dist }} -f .github/workflows/${{ matrix.dist }}.docker


1 change: 1 addition & 0 deletions .github/workflows/py3_casacore_master.docker
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ADD . /src
WORKDIR /src
RUN python3 -m venv venv && \
. venv/bin/activate && \
pip install 'numpy<2' && \
pip install . && \
cd tests && \
pip install -r requirements.txt && \
Expand Down
18 changes: 0 additions & 18 deletions .github/workflows/py3_casacore_v3.4.docker

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/py3_kern7.docker

This file was deleted.

Loading