Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ci): runs-on: ubuntu-22.04 -> ubuntu-24.04 #1686

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions .github/workflows/linux-eic-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
env:
# env cannot be used in matrix, but outputs can
# so this job turns env into outputs
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
platform_json: ${{ steps.define.outputs.platform_json }}
release_json: ${{ steps.define.outputs.release_json }}
Expand All @@ -60,7 +60,7 @@ jobs:
echo "release_json=[\"${{ env.release }}\"]" >> $GITHUB_OUTPUT

build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: env
strategy:
# include multiple compilers for one release version,
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
if-no-files-found: error

clang-tidy-iwyu:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
run: git diff --exit-code

llvm-cov:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build
permissions:
statuses: write
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
path: build/codecov_report/

detector-info:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
hash: ${{ steps.detector-info.outputs.hash }}
steps:
Expand All @@ -326,7 +326,7 @@ jobs:
echo "hash=${hash%% *}" | tee $GITHUB_OUTPUT

npsim-gun:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- detector-info
strategy:
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
if-no-files-found: error

npsim-gun-EcalLumiSpec:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- detector-info
strategy:
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
if-no-files-found: error

npsim-dis:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- detector-info
strategy:
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
if-no-files-found: error

npsim-minbias:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- detector-info
strategy:
Expand Down Expand Up @@ -462,7 +462,7 @@ jobs:
if-no-files-found: error

eicrecon-two-stage-running:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-gun
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
if-no-files-found: error

eicrecon-eicmkplugin:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-gun
Expand Down Expand Up @@ -569,7 +569,7 @@ jobs:
$PWD/install/bin/eicrecon $JANA_OPTIONS -Pplugins=MyCustomPlugin -Ppodio:output_file=rec_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4eic.root sim_${{ matrix.particle }}_1GeV_20GeV_${{ matrix.detector_config }}.edm4hep.root

eicrecon-test-plugins:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-gun
Expand Down Expand Up @@ -618,7 +618,7 @@ jobs:
if-no-files-found: error

eicrecon-benchmarks-plugins:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-gun
Expand Down Expand Up @@ -671,7 +671,7 @@ jobs:
if-no-files-found: error

eicrecon-gun:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-gun
Expand Down Expand Up @@ -785,7 +785,7 @@ jobs:
if-no-files-found: error

eicrecon-gun-EcalLumiSpec:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-gun-EcalLumiSpec
Expand Down Expand Up @@ -852,7 +852,7 @@ jobs:
if-no-files-found: error

eicrecon-dis:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
- npsim-dis
Expand Down Expand Up @@ -985,7 +985,7 @@ jobs:
if-no-files-found: error

trigger-container:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.event_name != 'merge_group' && github.event_name != 'schedule' && github.actor != 'dependabot[bot]' }}
needs:
- eicrecon-gun
Expand Down Expand Up @@ -1017,7 +1017,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build-docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- eicrecon-gun
- eicrecon-dis
Expand Down Expand Up @@ -1055,7 +1055,7 @@ jobs:
if-no-files-found: error

list-open-prs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
json: ${{ steps.remap.outputs.json }}
steps:
Expand All @@ -1074,7 +1074,7 @@ jobs:
include.*.head_sha: ${{ toJSON(fromJSON(steps.query.outputs.data).*.head.sha) }}

get-docs-from-open-prs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build-docs
- list-open-prs
Expand Down Expand Up @@ -1125,7 +1125,7 @@ jobs:
if-no-files-found: ignore

get-docs-from-main:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build-docs
steps:
Expand Down Expand Up @@ -1182,7 +1182,7 @@ jobs:
if-no-files-found: error

collect-docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- get-docs-from-main
- get-docs-from-open-prs
Expand Down Expand Up @@ -1241,7 +1241,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down
Loading