Compare commits

...

2 Commits

Author SHA1 Message Date
Sebastian Ullrich
028c02ba06 fix 2024-05-02 12:06:32 +02:00
Sebastian Ullrich
157ad798f9 chore: CI: use large runners on Windows 2024-05-02 11:58:04 +02:00

View File

@@ -54,7 +54,10 @@ jobs:
with:
script: |
const quick = ${{ steps.set-quick.outputs.quick }};
console.log(`quick: ${quick}`)
console.log(`quick: ${quick}`);
// use large runners outside PRs where available (original repo)
// for now Windows only, which is the slowest non-debug job
let large = ${{ github.event_name != 'pull_request' && github.repository == 'leanprover/lean4' }} ? "-large" : "";
let matrix = [
{
// portable release build: use channel with older glibc (2.27)
@@ -135,7 +138,7 @@ jobs:
},
{
"name": "Windows",
"os": "windows-2022",
"os": `windows-2022${large}`,
"release": true,
"quick": false,
"shell": "msys2 {0}",