Skip to content

Commit b48d80e

Browse files
authored
Merge pull request #76 from JuliaReach/schillic/slim
Use `ubuntu-slim` in CI
2 parents 8876030 + 3597b53 commit b48d80e

File tree

9 files changed

+10
-11
lines changed

9 files changed

+10
-11
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
CompatHelper:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: Check if Julia is already available
1212
id: julia_in_path

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
TagBot:
1010
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-slim
1212
steps:
1313
- name: Create new release tag
1414
uses: JuliaRegistries/TagBot@v1

.github/workflows/doc-preview-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
doc-preview-cleanup:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: Checkout gh-pages branch
1212
uses: actions/checkout@v6

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
cancel-in-progress: true
2020
jobs:
2121
build:
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-slim
2323
if: "!contains(github.event.head_commit.message, 'skip ci')"
2424
env:
2525
JULIA_PKG_SERVER: ''

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77
jobs:
88
format:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-slim
1010
steps:
1111
- name: Check out repository
1212
uses: actions/checkout@v6

.github/workflows/invalidations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
cancel-in-progress: true
1313
jobs:
1414
evaluate:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-slim
1616
if: "!contains(github.event.head_commit.message, 'skip ci')"
1717
env:
1818
JULIA_PKG_SERVER: ''

.github/workflows/spell-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ concurrency:
99
cancel-in-progress: true
1010
jobs:
1111
spell-check:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-slim
1313
if: "!contains(github.event.head_commit.message, 'skip ci')"
1414
steps:
1515
- name: Check out repository

.github/workflows/test-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
version:
2424
- '1'
2525
os:
26-
- ubuntu-latest
26+
- ubuntu-slim
2727
arch:
2828
- x64
2929
env:

.github/workflows/test-pull-request.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ jobs:
2121
version:
2222
- '1'
2323
os:
24-
- ubuntu-latest
25-
- windows-latest
24+
- ubuntu-slim
2625
arch:
2726
- x64
2827
include:
2928
- version: '1.2' # test on oldest supported version
3029
arch: x64
31-
os: ubuntu-latest
30+
os: ubuntu-slim
3231
env:
3332
JULIA_PKG_SERVER: ''
3433
steps:

0 commit comments

Comments
 (0)