Skip to content

Commit

Permalink
Try ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed Feb 7, 2025
1 parent 53bb73f commit bb841b7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:

linux-build:
name: Build Linux binaries
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Git Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

tests:
name: Run Unit and Integration Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
name: Fablab Smoketest
# not applicable to forks. shouldn't run on release build
if: github.repository_owner == 'openziti' && !startsWith(github.ref_name, 'release-v')
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
name: Teardown SmokeTest
# ensure reasonable timeout-minutes on steps in this un-cancellable job
if: always()
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [ fablab-smoketest ]
steps:
# release cloud resources if the smoketest succeeded, failed, or was cancelled; unnecessary if skipped
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
name: Fablab HA Smoketest
# not applicable to forks. shouldn't run on release build
if: github.repository_owner == 'openziti' && !startsWith(github.ref_name, 'release-v')
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
fablab-ha-smoketest-teardown:
name: Teardown HA SmokeTest
if: always()
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
needs: [ fablab-ha-smoketest ]
steps:
# release cloud resources if the smoketest succeeded, failed, or was cancelled; unnecessary if skipped
Expand Down Expand Up @@ -402,7 +402,7 @@ jobs:
&& (needs.fablab-smoketest.result == 'success' || needs.fablab-smoketest.result == 'skipped')
&& (needs.tests.result == 'success')
}}
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
# ensure required job outcomes are specified in "if" expression
needs: [ tests, linux-build, mac-os-build, windows-build, fablab-smoketest, fablab-ha-smoketest ]
outputs:
Expand Down

0 comments on commit bb841b7

Please sign in to comment.