Skip to content

Commit

Permalink
[ci] Change ubuntu runner to 22.04
Browse files Browse the repository at this point in the history
Tizen studio requires python 2.7 and libncurses5.
However, Ubuntu 24.04's apt no longer supports these packages.
I considered options like deadsnake(24.04), but python 2.7 is no longer supported.
Rather than installing this manually, I decided that tizen studio is not ready for 24.04 yet,
so I fixed the version of ubuntu runnner to 22.04.
  • Loading branch information
JSUYA committed Jan 16, 2025
1 parent af9f4a3 commit b1de19a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
dart_analyze:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
Expand All @@ -14,7 +14,7 @@ jobs:
run: ./tools/tools_runner.sh analyze --custom-analysis=$(ls packages | tr '\n' ',')

format:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request_target]

jobs:
triage:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/labeler@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ github.repository_owner == 'flutter-tizen' }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit b1de19a

Please sign in to comment.