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

CI: update images to v14 #461

Merged
merged 1 commit into from
Nov 20, 2024
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/workflows/ea-jdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
jobs:
linux-ea:
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v12-openjdk24-ea"
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk24-ea"
steps:
- name: Git checkout
uses: actions/checkout@v4
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

style:
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v12-openjdk23"
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk23"
# We rarely build for more than 3 minutes
timeout-minutes: 10
steps:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

build:
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v12-openjdk11-with-ant-gcc"
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk11-with-ant-gcc"
# We rarely build for more than 3 minutes
timeout-minutes: 10
steps:
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
readme:
needs: build
runs-on: ubuntu-latest
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v12-openjdk23"
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk23"
# We rarely build for more than 3 minutes
timeout-minutes: 10
steps:
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
# - We need to set container to null on Windows and Mac as containers are
# supported on Linux only
runs-on: ${{ (matrix.os == 'linux') && 'ubuntu' || matrix.os }}-latest
container: ${{ (matrix.os == 'linux') && format('ghcr.io/renaissance-benchmarks/renaissance-buildenv:v12-{0}', matrix.image) || null }}
container: ${{ (matrix.os == 'linux') && format('ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-{0}', matrix.image) || null }}

# We rarely run over 17 minutes but a runaway JMH can loop forever.
timeout-minutes: 30
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
plugins:
runs-on: ubuntu-latest
needs: build
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v12-openjdk11-with-ant-gcc"
container: "ghcr.io/renaissance-benchmarks/renaissance-buildenv:v14-openjdk11-with-ant-gcc"
# We rarely run over 10 minutes anyway.
timeout-minutes: 30
steps:
Expand Down