Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Pull request overview

Link to relevant GitHub Issue(s) if appropriate:

Link to the **Ubuntu 22.04 .deb** installer to use for CI Testing. If not set, it will default to latest official release.
Link to the **Ubuntu 24.04 .deb** installer to use for CI Testing. If not set, it will default to latest official release.
[OpenStudio Installer]: http://


Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/manual_installer_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ on:
workflow_dispatch:
inputs:
os_installer_link:
description: 'The Link where to download the Ubuntu 22.04 OpenStudio SDK Installer (.DEB)'
description: 'The Link where to download the Ubuntu 24.04 OpenStudio SDK Installer (.DEB)'
required: true
default: 'https://openstudio-ci-builds.s3-us-west-2.amazonaws.com/develop/OpenStudio-3.5.1-alpha%2B59f1eb448b-Ubuntu-22.04.deb'
default: 'https://openstudio-ci-builds.s3-us-west-2.amazonaws.com/develop/OpenStudio-3.5.1-alpha%2B59f1eb448b-Ubuntu-24.04.deb'
branch_name:
description: 'The branch name to use and where to commit the test results. If ommited, it will default to the installer SHA'
required: false
Expand All @@ -21,7 +21,7 @@ on:

jobs:
test_installer:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
test_installer:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: "!(contains(github.event.head_commit.message, 'skip') && contains(github.event.head_commit.message, 'ci'))"

steps:
Expand Down Expand Up @@ -80,10 +80,10 @@ jobs:
raise ValueError("Something went wrong when querying {}, status={}".format(url, r.status_code))
exit(0)
data = r.json()
matched_installers = [x['browser_download_url'] for x in data['assets'] if 'Ubuntu-22.04-x86_64.deb' in x['name']]
matched_installers = [x['browser_download_url'] for x in data['assets'] if 'Ubuntu-24.04-x86_64.deb' in x['name']]

if len(matched_installers) == 0:
matched_installers = [x['browser_download_url'] for x in data['assets'] if 'Ubuntu-22.04.deb' in x['name']]
matched_installers = [x['browser_download_url'] for x in data['assets'] if 'Ubuntu-24.04.deb' in x['name']]
if len(matched_installers) == 0:
matched_installers = [x['browser_download_url'] for x in data['assets'] if 'Linux.deb' in x['name']]
if len(matched_installers) ==0:
Expand Down
Loading