Skip to content

Commit 80016a2

Browse files
committed
github: Build on Ubuntu 22.04 instead of Ubuntu 20.04
Github actions no longer provide runners with Ubuntu 20.04.
1 parent 291866b commit 80016a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
linux:
6767
if: (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
6868
needs: [prepare]
69-
runs-on: ubuntu-20.04
69+
runs-on: ubuntu-22.04
7070
steps:
7171
- uses: actions/checkout@v4
7272
- name: Build
@@ -109,7 +109,7 @@ jobs:
109109
linux-cross-aarch64:
110110
if: (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
111111
needs: [linux, prepare]
112-
runs-on: ubuntu-20.04
112+
runs-on: ubuntu-22.04
113113
steps:
114114
- uses: actions/checkout@v4
115115
- name: Build
@@ -225,7 +225,7 @@ jobs:
225225
steps:
226226
- name: Unpack cross toolchain
227227
run: |
228-
curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20240726/llvm-mingw-20240726-ucrt-ubuntu-20.04-x86_64.tar.xz
228+
curl -LO https://github.com/mstorsjo/llvm-mingw/releases/download/20240726/llvm-mingw-20240726-ucrt-ubuntu-22.04-x86_64.tar.xz
229229
tar -Jxf llvm-mingw-*.tar.xz
230230
rm llvm-mingw-*.tar.xz
231231
sudo mv llvm-mingw* /opt/llvm-mingw

0 commit comments

Comments
 (0)