1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-24 19:50:25 +00:00

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
This commit is contained in:
Frank Halasz
2025-02-03 12:19:50 -08:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
# #
# ****************************************************************************** # ******************************************************************************
FROM ubuntu:latest FROM ubuntu:22.04
SHELL ["/bin/bash", "-c"] SHELL ["/bin/bash", "-c"]
USER root:root USER root:root
# Install build tools # Install build tools

View File

@@ -152,7 +152,7 @@ jobs:
|| needs.inputs.outputs.force == 'true' || needs.inputs.outputs.force == 'true'
) )
runs-on: ubuntu-latest runs-on: ubuntu-22.04
steps: steps:
# Checkout the actions for this repo owner # Checkout the actions for this repo owner
@@ -503,6 +503,7 @@ jobs:
- name: Install SDL2 - name: Install SDL2
run: | run: |
export DEBIAN_FRONTEND=noninteractive export DEBIAN_FRONTEND=noninteractive
sudo -E apt-get update
sudo -E apt-get install -y libsdl2-dev libsdl2-2.0-0 sudo -E apt-get install -y libsdl2-dev libsdl2-2.0-0
# Install Emscripten SDK # Install Emscripten SDK