Skip to content

Commit

Permalink
Use Ubuntu 20 for testing.
Browse files Browse the repository at this point in the history
GitHub has officially begun to drop Ubuntu 18.04 support, causing workflows to fail.
  • Loading branch information
player-03 authored and joshtynjala committed Feb 21, 2023
1 parent 4232a9f commit bca5a33
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:

linux-ndll:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
haxe-version: [3.4.7, 4.0.5, 4.1.5, 4.2.5]
Expand Down Expand Up @@ -558,7 +558,8 @@ jobs:
needs: package-haxelib
strategy:
matrix:
os: [ubuntu-18.04, macos-11, windows-latest]
os: [ubuntu-20.04
, macos-11, windows-latest]
runs-on: ${{ matrix.os }}
steps:

Expand Down Expand Up @@ -708,7 +709,7 @@ jobs:
linux-samples:
needs: package-haxelib
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:

- name: Install system dependencies
Expand Down Expand Up @@ -807,7 +808,7 @@ jobs:
needs: package-haxelib
strategy:
matrix:
os: [ubuntu-18.04, macos-11, windows-latest]
os: [ubuntu-20.04, macos-11, windows-latest]
runs-on: ${{ matrix.os }}
steps:

Expand Down Expand Up @@ -917,7 +918,7 @@ jobs:
lime build SimpleAudio windows -release -verbose -nocolor
notify:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
needs: [package-haxelib, docs, android-samples, flash-samples, hashlink-samples, html5-samples, ios-samples, linux-samples, macos-samples, neko-samples, windows-samples]
if: ${{ github.repository == 'openfl/lime' && github.event_name != 'pull_request' }}
steps:
Expand Down

0 comments on commit bca5a33

Please sign in to comment.