Skip to content

Commit aa1b285

Browse files
authored
Specify the exact runners to use to build the project
1 parent b80b64d commit aa1b285

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/cmake-cross-compile.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ jobs:
4040
bin/anisette-server-aarch64.dbg
4141
4242
build-anisette-server-armv7:
43-
runs-on: ubuntu-22.04
44-
container: ubuntu:23.04
43+
runs-on: ubuntu-24.04
4544

4645
steps:
4746
- name: Install dependencies

.github/workflows/cmake.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
build-anisette-server-x86_64:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111

1212
steps:
1313
- uses: actions/checkout@v3
@@ -40,8 +40,7 @@ jobs:
4040
${{github.workspace}}/bin/anisette-server-x86_64.dbg
4141
4242
build-anisette-server-i686:
43-
runs-on: ubuntu-22.04
44-
container: ubuntu:23.04
43+
runs-on: ubuntu-24.04
4544

4645
steps:
4746
- name: Install dependencies

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base for builder
2-
FROM debian:unstable-slim AS builder
2+
FROM debian:bookworm-20241202 AS builder
33
# Deps for builder
44
RUN apt-get update && apt-get install --no-install-recommends -y ca-certificates ldc git clang dub libz-dev \
55
&& apt-get clean \

0 commit comments

Comments
 (0)