Skip to content

Commit e8c41e4

Browse files
committed
Merge branch 'main' into doppio-live-processing
2 parents 5be9a35 + 3d23916 commit e8c41e4

79 files changed

Lines changed: 4359 additions & 2304 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.bumpclient.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.23.4"
2+
current_version = "0.24.2"
33
commit = true
44
tag = false
55

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.23.4"
2+
current_version = "0.24.2"
33
commit = true
44
tag = true
55

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ jobs:
6969
docker container list -a
7070
7171
- name: Get ISPyB database
72-
uses: actions/download-artifact@v7
72+
uses: actions/download-artifact@v8
7373
with:
7474
name: database
7575
path: database/
7676

7777
- name: Install Murfey
7878
run: |
7979
set -eux
80-
pip install --disable-pip-version-check -e "."[cicd,server,developer]
80+
pip install --disable-pip-version-check -e "."[cicd,server,developer,sxt]
8181
8282
- uses: shogo82148/actions-setup-mysql@v1
8383
with:
@@ -129,7 +129,7 @@ jobs:
129129
PYTHONDEVMODE=1 pytest -v -ra --cov=murfey --cov-report=xml --cov-branch
130130
131131
- name: Upload test results to Codecov
132-
uses: codecov/codecov-action@v5
132+
uses: codecov/codecov-action@v6
133133
with:
134134
name: ${{ matrix.python-version }}
135135
files: coverage.xml

.github/workflows/publish-version.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Build python package
7979
run: python3 -m build
8080
- name: Store built package artifact
81-
uses: actions/upload-artifact@v6
81+
uses: actions/upload-artifact@v7
8282
with:
8383
name: package-distributions
8484
path: dist/
@@ -100,7 +100,7 @@ jobs:
100100

101101
steps:
102102
- name: Download all the dists
103-
uses: actions/download-artifact@v7
103+
uses: actions/download-artifact@v8
104104
with:
105105
name: package-distributions
106106
path: dist/
@@ -123,12 +123,12 @@ jobs:
123123

124124
steps:
125125
- name: Download all the dists
126-
uses: actions/download-artifact@v7
126+
uses: actions/download-artifact@v8
127127
with:
128128
name: package-distributions
129129
path: dist/
130130
- name: Sign the dists with Sigstore
131-
uses: sigstore/gh-action-sigstore-python@v3.2.0
131+
uses: sigstore/gh-action-sigstore-python@v3.3.0
132132
with:
133133
inputs: >-
134134
./dist/*.tar.gz

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
mkdir database
6161
wget -t 3 --waitretry=20 https://github.com/DiamondLightSource/ispyb-database/releases/download/v${{ env.ISPYB_DATABASE_SCHEMA }}/ispyb-database-${{ env.ISPYB_DATABASE_SCHEMA }}.tar.gz -O database/ispyb-database.tar.gz
6262
- name: Store database artifact
63-
uses: actions/upload-artifact@v6
63+
uses: actions/upload-artifact@v7
6464
with:
6565
name: database
6666
path: database/

Dockerfiles/murfey-instrument-server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RUN apt-get update && \
3232
pip \
3333
build \
3434
importlib-metadata && \
35-
/venv/bin/python -m pip install /python-murfey
35+
/venv/bin/python -m pip install /python-murfey[sxt]
3636

3737

3838
# Transfer completed Murfey build to base image

Helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: murfey-services
33
description: Umbrella Helm chart for deploying the servers and daemons needed to enable Murfey to transfer and process data
4-
version: 0.23.4
4+
version: 0.24.2
55
dependencies:
66
- name: murfey-instrument-server-clem
77
- name: murfey-instrument-server-tem
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-instrument-server-clem
33
description: Helm chart for deploying a Murfey instrument server, which executes orders to detect, modify, and transfer files on the instrument PC, and notifies the backend server about transferred files
4-
version: 0.23.4
4+
version: 0.24.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-instrument-server-tem
33
description: Helm chart for deploying a Murfey instrument server, which executes orders to detect, modify, and transfer files on the instrument PC, and notifies the backend server about transferred files
4-
version: 0.23.4
4+
version: 0.24.2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
apiVersion: v1
22
name: murfey-rsync
33
description: Helm chart for deploying an rsync daemon, which is responsible for executing the transfer of files from the client storage directory to the server storage system
4-
version: 0.23.4
4+
version: 0.24.2

0 commit comments

Comments
 (0)