Skip to content

Commit

Permalink
Merge pull request #289 from AntelopeIO/ubuntu24_main
Browse files Browse the repository at this point in the history
[4.1 -> main] add ubuntu 24.04 to CI
  • Loading branch information
spoonincode authored May 6, 2024
2 parents 6ba64da + da7e87a commit 9ecdca0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .cicd/platforms.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
},
"ubuntu22-llvm": {
"dockerfile": ".cicd/platforms/ubuntu22-llvm.Dockerfile"
},
"ubuntu24": {
"dockerfile": ".cicd/platforms/ubuntu24.Dockerfile"
}
}
12 changes: 12 additions & 0 deletions .cicd/platforms/ubuntu24.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ubuntu:noble

RUN apt-get update && apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential \
cmake \
git \
ninja-build \
python3 \
pkg-config \
libboost-all-dev \
libcurl4-gnutls-dev \
clang-tidy
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu20, ubuntu22, ubuntu22-llvm]
platform: [ubuntu20, ubuntu22, ubuntu22-llvm, ubuntu24]
runs-on: ["self-hosted", "enf-x86-beefy"]
container: ${{fromJSON(needs.d.outputs.p)[matrix.platform].image}}
steps:
Expand Down

0 comments on commit 9ecdca0

Please sign in to comment.