-
Notifications
You must be signed in to change notification settings - Fork 62
90 lines (73 loc) · 2.23 KB
/
linux-builder-containers.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Linux builder containers
on:
workflow_dispatch:
# schedule:
# - cron: '30 4 * * 1'
# =========================================================================
jobs:
# -----------------------------------------------------------------------
x86_64:
runs-on: ubuntu-latest
name: Build pak builder containers, x86_64
strategy:
fail-fast: false
matrix:
config:
- { r: '4.4' }
- { r: '4.3' }
- { r: '4.2' }
- { r: '4.1' }
- { r: '4.0' }
- { r: '3.6' }
- { r: '3.5' }
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: |
docker build --pull \
--build-arg R_MAJOR=${{ matrix.config.r }} \
-t ghcr.io/r-lib/pak-builder:x86_64-${{ matrix.config.r }} \
-f tools/build/linux/Dockerfile-builder .
- name: Push
run: |
docker push ghcr.io/r-lib/pak-builder:x86_64-${{ matrix.config.r }}
# -----------------------------------------------------------------------
aarch64:
runs-on: [linux-arm64]
name: Build pak builder containers, aarch64
strategy:
fail-fast: false
matrix:
config:
- { r: '4.4' }
- { r: '4.3' }
- { r: '4.2' }
- { r: '4.1' }
- { r: '4.0' }
- { r: '3.6' }
- { r: '3.5' }
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: |
docker build --pull \
--build-arg R_MAJOR=${{ matrix.config.r }} \
-t ghcr.io/r-lib/pak-builder:aarch64-${{ matrix.config.r }} \
-f tools/build/linux/Dockerfile-builder .
- name: Push
run: |
docker push ghcr.io/r-lib/pak-builder:aarch64-${{ matrix.config.r }}