From a013aa8d80f58ce7e3b3a337b71a847d506ddc1f Mon Sep 17 00:00:00 2001 From: Domenico Iezzi Date: Fri, 29 Nov 2024 10:44:23 +0100 Subject: [PATCH] Test new base image for Action pipeline --- .github/workflows/build.yml | 2 +- Makefile.in | 2 +- scripts/install-deps | 7 +++---- scripts/{install-mingw32-glib => install-mingw32-deps} | 9 ++++++--- 4 files changed, 11 insertions(+), 9 deletions(-) rename scripts/{install-mingw32-glib => install-mingw32-deps} (80%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b47be77..9668b15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: jobs: build: name: Toolchain build - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout diff --git a/Makefile.in b/Makefile.in index cc4420f..11a97ab 100644 --- a/Makefile.in +++ b/Makefile.in @@ -239,7 +239,7 @@ stamps/build-gcc-stage2-only: $(GCC_SRCDIR) stamps/install-deps stamps/build-qemu: $(QEMU_SRCDIR) rm -rf $@ $(notdir $@) mkdir $(notdir $@) - if test "$(QEMU_CONFIGURE_HOST)" = "--cross-prefix=x86_64-w64-mingw32-"; then cd $(notdir $@) && $(srcdir)/scripts/install-mingw32-glib $(INSTALL_DIR); fi + if test "$(QEMU_CONFIGURE_HOST)" = "--cross-prefix=x86_64-w64-mingw32-"; then cd $(notdir $@) && $(srcdir)/scripts/install-mingw32-deps $(INSTALL_DIR); fi cd $(notdir $@) && $(QEMU_ENV_VARS) $ x86_64-w64-mingw32.txt <