Skip to content

Commit 40d4fca

Browse files
authored
Merge pull request #530 from Interlisp/fgh_use-22.04-build-builder
Specify Ubuntu22.04 instead of Ubuntu-latest in various github action scripts to solve libc version issue crashing online
2 parents c8dc63d + 7fe0f70 commit 40d4fca

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/Dockerfile_builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# ******************************************************************************
1010

11-
FROM ubuntu:latest
11+
FROM ubuntu:22.04
1212
SHELL ["/bin/bash", "-c"]
1313
USER root:root
1414
# Install build tools

.github/workflows/buildRelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
|| needs.inputs.outputs.force == 'true'
153153
)
154154
155-
runs-on: ubuntu-latest
155+
runs-on: ubuntu-22.04
156156

157157
steps:
158158
# Checkout the actions for this repo owner
@@ -503,6 +503,7 @@ jobs:
503503
- name: Install SDL2
504504
run: |
505505
export DEBIAN_FRONTEND=noninteractive
506+
sudo -E apt-get update
506507
sudo -E apt-get install -y libsdl2-dev libsdl2-2.0-0
507508
508509
# Install Emscripten SDK

0 commit comments

Comments
 (0)