-
Notifications
You must be signed in to change notification settings - Fork 2
129 lines (115 loc) · 3.04 KB
/
linux.yml
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: linux
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
cip:
- tag: "5.37"
install_type: system
- tag: "5.37"
install_type: share
- tag: "5.36"
install_type: system
- tag: "5.36"
install_type: share
- tag: "5.34"
install_type: system
- tag: "5.34"
install_type: share
- tag: "5.32"
install_type: system
- tag: "5.32"
install_type: share
- tag: "5.30"
install_type: system
- tag: "5.30"
install_type: share
- tag: "5.28"
install_type: system
- tag: "5.28"
install_type: share
- tag: "5.26"
install_type: system
- tag: "5.26"
install_type: share
- tag: "5.24"
install_type: system
- tag: "5.24"
install_type: share
- tag: "5.22"
install_type: system
- tag: "5.22"
install_type: share
- tag: "5.20"
install_type: system
- tag: "5.20"
install_type: share
- tag: "5.18"
install_type: system
- tag: "5.18"
install_type: share
- tag: "5.16"
install_type: system
- tag: "5.16"
install_type: share
- tag: "5.14"
install_type: system
- tag: "5.14"
install_type: share
- tag: "5.12"
install_type: system
- tag: "5.12"
install_type: share
- tag: "5.10"
install_type: system
- tag: "5.10"
install_type: share
- tag: "5.8"
install_type: system
- tag: "5.8"
install_type: share
env:
CIP_TAG: ${{ matrix.cip.tag }}
CIP_ENV: ALIEN_INSTALL_TYPE=${{ matrix.cip.install_type }}
steps:
- uses: actions/checkout@v2
- name: Bootstrap CIP
run: |
curl -L https://raw.githubusercontent.com/uperl/cip/main/bin/github-bootstrap | bash
- name: Cache-Key
id: cache-key
run: |
echo -n '::set-output name=key::'
cip cache-key
- name: Cache CPAN modules
uses: actions/cache@v2
with:
path: ~/.cip
key: ${{ runner.os }}-build-${{ steps.cache-key.outputs.key }}
restore-keys: |
${{ runner.os }}-build-${{ steps.cache-key.outputs.key }}
- name: Start-Container
run: |
cip start
- name: Diagnostics
run: |
cip diag
- name: Install-Dependencies
run: |
cip install
- name: Build + Test
run: |
cip script
- name: CPAN log
if: ${{ failure() }}
run: |
cip exec bash -c 'cat $HOME/.cpanm/latest-build/build.log'