Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing with CentOS 7 docker
name: Testing with Rocky docker

on:
push:
Expand All @@ -16,42 +16,42 @@ concurrency:

jobs:
test:
# It is hosted on Ubuntu but the docker image is built on CentOS 7
# It is hosted on Ubuntu but the docker image is built on Rocky
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Pre-load docker image
run: docker pull ghcr.io/mantidproject/mantidimaging:centos7
run: docker pull ghcr.io/mantidproject/mantidimaging:rocky8

- name: List versions
uses: ./.github/actions/test
with:
command: python --version; conda list ; pip list
label: centos7
label: rocky8

- name: yapf
uses: ./.github/actions/test
with:
command: yapf --parallel --diff --recursive .
label: centos7
label: rocky8

- name: ruff
uses: ./.github/actions/test
with:
command: ruff check .
label: centos7
label: rocky8

- name: mypy
uses: ./.github/actions/test
with:
command: mypy --ignore-missing-imports mantidimaging
label: centos7
label: rocky8

- name: pytest
timeout-minutes: 5
uses: ./.github/actions/test
with:
command: xvfb-run pytest -n auto -o log_cli=true --ignore=mantidimaging/eyes_tests --durations=10
label: centos7
label: rocky8
24 changes: 0 additions & 24 deletions docker/Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Requirements
------------

Operating system
- Linux. Tested on Ubuntu 18.04, 20.04, 22.04 and CentOS 7
- Linux. Tested on Ubuntu 18.04, 20.04, 22.04 and Rocky 8
- Windows. Tested on Windows 10

GPU
Expand Down