-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (90 loc) · 2.36 KB
/
unit-tests.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: Unit Tests
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
strategy:
matrix:
os:
# - ubuntu-16.04
- ubuntu-18.04
# no libssl on windows
# - windows-latest
perl:
# - '5.22'
- '5.26'
- '5.30'
node:
# - '10.x'
- '13.x'
# exclude:
#- os: ubuntu-16.04
# perl: '5.26'
#- os: ubuntu-16.04
# perl: '5.30'
#- os: ubuntu-16.04
# node: '13.x'
#- os: ubuntu-18.04
# perl: '5.22'
#- os: windows-latest
# perl: '5.22'
#- os: windows-latest
# perl: '5.26'
fail-fast: false
name: node-${{ matrix.node }}/perl${{ matrix.perl }}/${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Setup perl
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl }}
- name: CPAN Cache
id: cpan-cache
uses: actions/cache@v1
with:
path: thirdparty/lib
key: ${{ matrix.os }}-cpan-${{ matrix.perl }}-${{ hashFiles('**/cpanfile') }}
- name: Node Cache
id: node-cache
uses: actions/cache@v1
with:
path: frontend/node_modules
key: ${{ matrix.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ matrix.os }}-node-${{ matrix.node }}-
- name: Install Gettext
run: sudo apt-get install gettext
- name: Bootstrap
run: ./bootstrap
- name: Configure
run: ./configure --prefix=$HOME/test-install
- name: Make
run: make
- name: Test
run: |
cp etc/oktdb.dist.yaml etc/oktdb.yaml
make test
- name: Build Dist
run: |
make dist
tar xf oktdb-$(cat VERSION).tar.gz
cd oktdb-$(cat VERSION)
./configure --prefix=$HOME/test-install
make
cp etc/oktdb.dist.yaml etc/oktdb.yaml
make test
make install
cd $HOME/test-install
cp etc/oktdb.dist.yaml etc/oktdb.yaml
./bin/oktdb.pl