Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e5aa8d8
Adding code from IMAS plugin keycloak authentication.
jholloc Feb 17, 2025
e8b1a41
Fixing Linux build.
jholloc Feb 17, 2025
3a82762
Removing references to curl from client libs.
jholloc Feb 17, 2025
745db0f
Adding curl as dependency to ubuntu CI build.
jholloc Feb 17, 2025
8343c7c
Adding AuthenticationBlock and sending from client.
jholloc Feb 18, 2025
72e813e
Fixing missing allocation for AuthenticationBlock.
jholloc Feb 18, 2025
5e3c768
Fixing memory errors.
jholloc Feb 18, 2025
455d36c
null terminating received payload
jholloc Feb 18, 2025
4295866
fixing authentication errors returned to client.
jholloc Feb 18, 2025
e5de524
Storing authentication token payload on client handshake and make it …
jholloc Jul 14, 2025
96219e0
Updating help plugin to test authorisation service.
jholloc Aug 21, 2025
376dc12
Simplifying dependency on curl wrapper.
jholloc Aug 21, 2025
9189c31
Installing auth header.
jholloc Sep 3, 2025
4478a9b
Fixing rebase
jholloc Sep 11, 2025
d881020
Bump actions/download-artifact from 4 to 6
dependabot[bot] Nov 3, 2025
e314bc9
Merge pull request #97 from ukaea/dependabot/github_actions/develop/a…
stephen-dixon Nov 4, 2025
d4a81f4
Bugfix/repeated bytes calls fail (#99)
stephen-dixon Nov 5, 2025
57a7f67
Merge branch 'main' into develop
stephen-dixon Nov 10, 2025
508938b
Add debug log for number of cached requests in idamClient (#105)
munechika-koyo Nov 17, 2025
1afc2d7
Feature/bytes plugin path expansion (#109)
stephen-dixon Nov 27, 2025
eb73b65
Merge branch 'develop' into feature/oauth_authentication
stephen-dixon Nov 27, 2025
70b9055
bump protocol version to 11
stephen-dixon Nov 27, 2025
c209530
adding missing curl dependency to windows build in CI
stephen-dixon Nov 27, 2025
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: 3 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
openssl
dlfcn-win32
spdlog
curl[openssl]

- name: build uda on windows
if: runner.os == 'Windows'
Expand Down Expand Up @@ -146,7 +147,7 @@ jobs:
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* &&
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* &&
yum update -y &&
yum install -y wget openssl-devel libxml2-devel libtirpc-devel &&
yum install -y wget openssl-devel libxml2-devel libtirpc-devel curl-devel &&
cd /tmp &&
wget https://github.com/fmtlib/fmt/archive/refs/tags/10.0.0.tar.gz &&
tar xzf 10.0.0.tar.gz &&
Expand Down Expand Up @@ -197,7 +198,7 @@ jobs:
dnf update -y &&
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm &&
dnf install -y boost1.78-devel openssl-devel libxml2-devel libtirpc-devel
fmt fmt-devel spdlog spdlog-devel capnproto capnproto-devel &&
fmt fmt-devel spdlog spdlog-devel capnproto capnproto-devel libcurl-devel &&
cd /project &&
cmake -B build
-DBUILD_SHARED_LIBS=ON
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
python3-dev
python3-pip
python3-venv
libcurl4-openssl-dev

# Capnproto package on Ubuntu 24.04 has broken CMake file
- name: Fix Capnproto on Ubuntu
Expand Down Expand Up @@ -126,6 +127,7 @@ jobs:
dlfcn-win32
spdlog
liblzma
curl[openssl]

- name: Configure CMake (linux)
if: matrix.os == 'ubuntu-latest'
Expand Down
206 changes: 0 additions & 206 deletions .gitlab-ci.yml

This file was deleted.

Loading
Loading