Skip to content

Commit

Permalink
merged master -> find-refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Sep 19, 2024
2 parents 2af7fab + a5b50ea commit e510e47
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
runs-on: ${{ inputs.runner }}
# prevent 2 concurrent jobs (needed for ARM64 self-hosted runner)
concurrency:
group: ${{ inputs.runner }}
# Only limit concurrency on arm64 build, otherwise, use a random group name
group: ${{ contains(inputs.runner, 'arm64') && 'arm64-group' || format('{0}-{1}', github.run_id, inputs.stable_unstable) }}
cancel-in-progress: false
env:
AWS_ACCESS_KEY_ID: ${{ secrets.aws_access_key_id }}
Expand Down
6 changes: 3 additions & 3 deletions README-dockerhub.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Release notes are available [here](https://github.com/orthanc-server/orthanc-bui

# packages content

#### 24.8.2 Default image
#### 24.8.3 Default image
```
component version
---------------------------------------------
Expand All @@ -35,7 +35,7 @@ Connectivity check plugin 1.12.4
Housekeeper plugin 1.12.4
Delayed Deletion plugin 1.12.4
Multitenant DICOM plugin 1.12.4
Stone Web viewer plugin 2.5+bea4e7900a47
Stone Web viewer plugin 2.6
Osimis Web viewer plugin 1.4.3
Python plugin 4.3
Orthanc Web viewer plugin 2.9
Expand Down Expand Up @@ -65,7 +65,7 @@ Lua 5.4
```

#### 24.8.2-full image
#### 24.8.3-full image
```
additional component version
---------------------------------------------
Expand Down
5 changes: 2 additions & 3 deletions build-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@
"commentMacOS": "# disabled because link fails with ld: cannot link directly with dylib/framework, your binary is not an allowed client of /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk/usr/lib/libpython2.7.tbd for architecture x86_64",
"buildForMacOS": false,
"buildForWin": true,
"extraCMakeFlagsWin": "-DPYTHON_VERSION=3.12 -DPYTHON_WINDOWS_ROOT=C:/hostedtoolcache/windows/Python/3.12.4/x64/",
"extraCMakeFlagsWin": "-DPYTHON_VERSION=3.12 -DPYTHON_WINDOWS_ROOT=C:/hostedtoolcache/windows/Python/3.12.5/x64/",
"artifactsWin": "OrthancPython.dll",
"windows": [{
"Description": "Python plugin for Python 3.12 (AGPL license)",
Expand All @@ -504,8 +504,7 @@
"repoType": "hg",
"sourcesSubPath": "/Applications/StoneWebViewer/Plugin",
"comment": "# CHANGE_VERSION_STONE_WEB_VIEWER",
"stable": "bea4e7900a47",
"BuildbotVersion" : "2.5",
"stable": "StoneWebViewer-2.6",
"unstable": "default",
"artifactsMacOS": "libStoneWebViewer.dylib",
"commentMacOS": "# currently always building with wasm-binaries from latest offical version",
Expand Down
2 changes: 1 addition & 1 deletion local-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ORTHANC_OHIF_COMMIT_ID=$(getCommitId "Orthanc-ohif" $version docker $skipCommitC
ORTHANC_STL_COMMIT_ID=$(getCommitId "Orthanc-stl" $version docker $skipCommitChecks)
ORTHANC_JAVA_COMMIT_ID=$(getCommitId "Orthanc-java" $version docker $skipCommitChecks)

BASE_DEBIAN_IMAGE=bookworm-20240812-slim
BASE_DEBIAN_IMAGE=bookworm-20240904-slim
BASE_BUILDER_IMAGE_TAG=$BASE_DEBIAN_IMAGE-$version

# list all intermediate targets. It allows us to "slow down" the build and see what's going wrong (which is not possible with 10 parallel builds)
Expand Down
9 changes: 9 additions & 0 deletions release-notes-docker-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ Pending changes
- re-enable many disabled tests


- DOCKER: upgraded base image to `debian:bookworm-20240904-slim`


24.8.3
------

- upgraded Stone Web viewer plugin to [2.6](https://orthanc.uclouvain.be/hg/orthanc-stone/file/tip/Applications/StoneWebViewer/NEWS)


24.8.2
------

Expand Down

0 comments on commit e510e47

Please sign in to comment.