Skip to content

Increase timeout for windows configure-pagefile #3652

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

Merged
merged 1 commit into from
May 30, 2023
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,11 @@ jobs:

- name: Configure Windows Pagefile
if: matrix.os == 'windows-latest'
uses: al-cheb/configure-pagefile-action@v1.3
uses: al-cheb/configure-pagefile-action@d298bdee6b133626425040e3788f1055a8b4cf7a
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need an unmerged PR for now, maybe we will have to fork it eventually ...

with:
minimum-size: 2GB
maximum-size: 8GB
timeout: 600

- name: Check that workflows are up to date
shell: bash
Expand Down
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,12 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq(
cond = Some(s"matrix.java == '${GraalVM.render}'")
),
WorkflowStep.Use(
UseRef.Public("al-cheb", "configure-pagefile-action", "v1.3"),
UseRef.Public(
"al-cheb",
"configure-pagefile-action",
"d298bdee6b133626425040e3788f1055a8b4cf7a"),
name = Some("Configure Windows Pagefile"),
params = Map("minimum-size" -> "2GB", "maximum-size" -> "8GB"),
params = Map("minimum-size" -> "2GB", "maximum-size" -> "8GB", "timeout" -> "600"),
cond = Some(s"matrix.os == '$Windows'")
)
)
Expand Down