Skip to content

Commit 6f3be78

Browse files
authoredFeb 13, 2025··
Merge pull request #139 from eMoflon/feature/update-github-actions-runner-ubuntu-22.04
Updates all GitHub Actions Linux runner OS to Ubuntu 22.04
2 parents 9f4a51c + ed96724 commit 6f3be78

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# This is necessary because some of the Github-hosted macOS-based runner
3535
# did trigger the API rate limit from time to time.
3636
collect-github-api-artifacts:
37-
runs-on: [ubuntu-20.04]
37+
runs-on: [ubuntu-22.04]
3838
steps:
3939
- name: Find emoflon-headless updatesite
4040
run: |
@@ -78,7 +78,7 @@ jobs:
7878

7979
# Create splash image
8080
create-splash-image:
81-
runs-on: [ubuntu-20.04]
81+
runs-on: [ubuntu-22.04]
8282
steps:
8383
- name: Check out repository code
8484
uses: actions/checkout@v4
@@ -95,7 +95,7 @@ jobs:
9595
# Build Eclipse eMoflon Linux user
9696
build-linux-user:
9797
needs: [create-splash-image, collect-github-api-artifacts]
98-
runs-on: [ubuntu-20.04]
98+
runs-on: [ubuntu-22.04]
9999
steps:
100100
- name: Start message
101101
run: echo "Started CI build (Eclipse eMoflon Linux user)."
@@ -129,7 +129,7 @@ jobs:
129129
# Build Eclipse eMoflon Linux dev
130130
build-linux-dev:
131131
needs: [create-splash-image, collect-github-api-artifacts]
132-
runs-on: [ubuntu-20.04]
132+
runs-on: [ubuntu-22.04]
133133
steps:
134134
- name: Start message
135135
run: echo "Started CI build (Eclipse eMoflon Linux dev)."
@@ -162,7 +162,7 @@ jobs:
162162
# Build Eclipse eMoflon Linux user CI
163163
build-linux-user-ci:
164164
needs: [collect-github-api-artifacts]
165-
runs-on: [ubuntu-20.04]
165+
runs-on: [ubuntu-22.04]
166166
steps:
167167
- name: Start message
168168
run: echo "Started CI build (Eclipse eMoflon Linux user CI)."
@@ -193,7 +193,7 @@ jobs:
193193
# Build Eclipse eMoflon Linux dev CI
194194
build-linux-dev-ci:
195195
needs: [collect-github-api-artifacts]
196-
runs-on: [ubuntu-20.04]
196+
runs-on: [ubuntu-22.04]
197197
steps:
198198
- name: Start message
199199
run: echo "Started CI build (Eclipse eMoflon Linux dev CI)."
@@ -224,7 +224,7 @@ jobs:
224224
# Build Eclipse eMoflon Linux dev HiPE
225225
build-linux-dev-hipe:
226226
needs: [create-splash-image, collect-github-api-artifacts]
227-
runs-on: [ubuntu-20.04]
227+
runs-on: [ubuntu-22.04]
228228
steps:
229229
- name: Start message
230230
run: echo "Started CI build (Eclipse eMoflon Linux dev HiPE)."
@@ -629,7 +629,7 @@ jobs:
629629
# Create a release if running on tag
630630
create-release:
631631
needs: [build-linux-user, build-linux-dev, build-linux-user-ci, build-linux-dev-ci, build-linux-dev-hipe, build-macos-user, build-macos-dev, build-macos-dev-hipe, build-macos-arm-user, build-macos-arm-dev, build-macos-arm-dev-hipe, build-windows-user, build-windows-dev, build-windows-dev-hipe]
632-
runs-on: [ubuntu-20.04]
632+
runs-on: [ubuntu-22.04]
633633
# Only run on pushed tags (and explicitely ignore scheduled runs)
634634
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') && github.event_name != 'schedule'
635635
steps:

0 commit comments

Comments
 (0)
Please sign in to comment.