Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bce5774

Browse files
author
Matthias Koeppe
committedApr 6, 2024
.github/workflows: Change default platform from ubuntu-focal to ubuntu-jammy
1 parent 45d3942 commit bce5774

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed
 

‎.github/workflows/build.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
platform:
1616
description: 'Platform'
1717
required: true
18-
default: 'ubuntu-focal-standard'
18+
default: 'ubuntu-jammy-standard'
1919
docker_tag:
2020
description: 'Docker tag'
2121
required: true
@@ -52,7 +52,7 @@ jobs:
5252

5353
build:
5454
runs-on: ubuntu-latest
55-
container: ghcr.io/sagemath/sage/sage-${{ github.event.inputs.platform || 'ubuntu-focal-standard' }}-with-targets:${{ github.event.inputs.docker_tag || 'dev'}}
55+
container: ghcr.io/sagemath/sage/sage-${{ github.event.inputs.platform || 'ubuntu-jammy-standard' }}-with-targets:${{ github.event.inputs.docker_tag || 'dev'}}
5656
needs: [get_ci_fixes]
5757
steps:
5858
- name: Checkout

‎.github/workflows/ci-conda.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
# environment: [environment, environment-optional]
3636
conda-env: [environment]
3737
# On pull requests, only test two jobs:
38-
# Ubuntu with Python 3.9, macOS with Python 3.10.
39-
# Build & Test currently uses Python 3.11 (on ubuntu-focal).
38+
# Ubuntu with Python 3.9, macOS with Python 3.11.
39+
# Build & Test currently uses Python 3.10 (on ubuntu-jammy).
4040
# Together, they cover the supported minor Python versions.
4141
include: >-
4242
${{ github.event_name == 'pull_request'
43-
&& fromJson('[{"os": "macos", "python": "3.10", "conda-env": "environment"}]')
43+
&& fromJson('[{"os": "macos", "python": "3.11", "conda-env": "environment"}]')
4444
|| fromJson('[]') }}
4545
4646
steps:

‎.github/workflows/ci-linux.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
targets: build doc-html
4747
targets_optional: ptest
4848
tox_system_factors: >-
49-
["ubuntu-focal"]
49+
["ubuntu-jammy"]
5050
tox_packages_factors: >-
5151
["standard"]
5252
docker_push_repository: ghcr.io/${{ github.repository }}/

‎.github/workflows/doc-build-pdf.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
platform:
1010
description: 'Platform'
1111
required: true
12-
default: 'ubuntu-focal-standard'
12+
default: 'ubuntu-jammy-standard'
1313
docker_tag:
1414
description: 'Docker tag'
1515
required: true
@@ -46,7 +46,7 @@ jobs:
4646

4747
build-docs-pdf:
4848
runs-on: ubuntu-latest
49-
container: ghcr.io/sagemath/sage/sage-${{ github.event.inputs.platform || 'ubuntu-focal-standard' }}-with-targets:${{ github.event.inputs.docker_tag || 'dev'}}
49+
container: ghcr.io/sagemath/sage/sage-${{ github.event.inputs.platform || 'ubuntu-jammy-standard' }}-with-targets:${{ github.event.inputs.docker_tag || 'dev'}}
5050
needs: [get_ci_fixes]
5151
steps:
5252
- name: Checkout

‎.github/workflows/doc-build.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
build-docs:
4343
runs-on: ubuntu-latest
44-
container: ghcr.io/sagemath/sage/sage-ubuntu-focal-standard-with-targets:dev
44+
container: ghcr.io/sagemath/sage/sage-ubuntu-jammy-standard-with-targets:dev
4545
needs: [get_ci_fixes]
4646
steps:
4747
- name: Checkout

0 commit comments

Comments
 (0)
Please sign in to comment.