Skip to content

Commit

Permalink
cbuild: Update to Fedora 39
Browse files Browse the repository at this point in the history
Use latest Fedora release

Signed-off-by: Leon Romanovsky <[email protected]>
  • Loading branch information
rleon authored and EdwardSro committed Jan 22, 2024
1 parent 1462a87 commit 20ab780
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions buildlib/azure-pipelines.yml
Expand Up @@ -34,7 +34,7 @@ resources:
image: ucfconsort.azurecr.io/rdma-core/centos9:44.0
endpoint: ucfconsort_registry
- container: fedora
image: ucfconsort.azurecr.io/rdma-core/fc38:46.0
image: ucfconsort.azurecr.io/rdma-core/fc39:49.0
endpoint: ucfconsort_registry
- container: xenial
image: ucfconsort.azurecr.io/rdma-core/ubuntu-16.04:28.0
Expand Down Expand Up @@ -195,7 +195,7 @@ stages:
CONTAINER: centos9
SPEC: redhat/rdma-core.spec
RPMBUILD_OPTS: --define 'EXTRA_CMAKE_FLAGS -DCMAKE_BUILD_TYPE=Debug -DENABLE_WERROR=1'
fedora38:
fedora39:
CONTAINER: fedora
SPEC: redhat/rdma-core.spec
RPMBUILD_OPTS: --define 'EXTRA_CMAKE_FLAGS -DCMAKE_BUILD_TYPE=Debug -DENABLE_WERROR=1'
Expand Down
8 changes: 4 additions & 4 deletions buildlib/cbuild
Expand Up @@ -220,10 +220,10 @@ class centos9(Environment):
(" ".join(sorted(self.pkgs))))
return res

class fc38(Environment):
docker_parent = "fedora:38";
class fc39(Environment):
docker_parent = "fedora:39";
pkgs = centos8.pkgs | {"util-linux"}
name = "fc38";
name = "fc39";
specfile = "redhat/rdma-core.spec";
ninja_cmd = "ninja-build";
is_rpm = True;
Expand Down Expand Up @@ -626,7 +626,7 @@ environments = [centos7(),
jammy(),
jessie(),
stretch(),
fc38(),
fc39(),
leap(),
tumbleweed(),
debian_experimental(),
Expand Down

0 comments on commit 20ab780

Please sign in to comment.