aboutsummaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
blob: b1f36383e1406a6a7094be9038ef39a2ae66c7f5 (plain) (blame)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
version: 2
workflows:
  version: 2
  test-workflow:
    jobs:
      - alpine_21
      - alpine3.7_20.3
      - centos7_19.3
      - centos6_18.3
      - debian9_17.5__wx_odbc__shellcheck
      - trusty_17.0
      - debian8_R15B03-1

jobs:

  alpine_21:
    docker:
      - image: alpine
    environment:
      - _KERL_VSN: '21.0.1'
      - KERL_BUILD_BACKEND: git
      - KERL_BUILD_DOCS: 'yes'
    steps: &alpine_steps
      - run: apk update && apk upgrade
      - run: |
          apk add curl ca-certificates \
                  dpkg-dev dpkg \
                  gcc g++ libc-dev linux-headers make autoconf ncurses-dev tar \
                  openssl-dev lksctp-tools-dev lksctp-tools \
                  libxslt git
      - checkout
      - run: ./kerl update releases
      - run: &build_on_all_cores
          command:
            |
              export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"
              ./kerl build "$_KERL_VSN" "$_KERL_VSN" | tee build.log
          no_output_timeout: 45m
      - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
      - run: ./kerl status
      - run: &activate_then_test_for_crypto
          |
            source $(./kerl path install_$_KERL_VSN)/activate
            erl -s crypto -s init stop
            kerl_deactivate
      - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
      - run: ./kerl delete build "$_KERL_VSN"

  alpine3.7_20.3:
    docker:
      - image: alpine:3.7
    environment:
      - _KERL_VSN: 20.3
      - KERL_BUILD_BACKEND: git
      - KERL_BUILD_DOCS: 'yes'
    steps: *alpine_steps

  centos7_19.3:
    docker:
      - image: centos:7
    environment:
      - _KERL_VSN: 19.3
      - KERL_BUILD_BACKEND: git
      - KERL_CONFIGURE_DISABLE_APPLICATIONS: odbc
    steps:
      - run: yum -y update
      - run: |
          yum -y install curl git \
                         make automake autoconf gcc gcc-c++ \
                         gcc-java \
                         ncurses-devel openssl-devel
      - checkout
      - run: ./kerl update releases
      - run: *build_on_all_cores
      - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
      - run: ./kerl status
      - run: *activate_then_test_for_crypto
      - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
      - run: ./kerl delete build "$_KERL_VSN"

  centos6_18.3:
    docker:
      - image: centos:6
    environment:
      - _KERL_VSN: 18.3
      - KERL_BUILD_BACKEND: git
      - KERL_CONFIGURE_DISABLE_APPLICATIONS: odbc
    steps:
      - run: yum -y update
      - run: |
          yum -y install curl \
                         make automake autoconf gcc gcc-c++ \
                         gcc-java \
                         ncurses-devel openssl-devel
      - run: |
          yum -y install https://centos6.iuscommunity.org/ius-release.rpm
          # CircleCI checkout uses -B which isn't available in CentOS6's packaged git
          yum -y install git2u
      - checkout
      - run: ./kerl update releases
      - run: *build_on_all_cores
      - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
      - run: ./kerl status
      - run: *activate_then_test_for_crypto
      - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
      - run: ./kerl delete build "$_KERL_VSN"

  debian9_17.5__wx_odbc__shellcheck:
    docker:
      - image: debian:9
    environment:
      - _KERL_VSN: 17.5
      - KERL_BUILD_BACKEND: git
      - SHELLCHECK_URL: https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz
    steps:
      - run: apt update && apt upgrade -y
      - run: |
          apt install -y --no-install-recommends \
             curl ca-certificates \
             git autoconf dpkg-dev gcc g++ make libncurses-dev \
             libssl1.0.2 libssl1.0-dev libsctp1 libsctp-dev \
             libodbc1 unixodbc-dev \
             libwxgtk3.0-dev libgl1-mesa-dev libglu1-mesa-dev libpng16-16 libpng-dev \
             procps
      - run: wx-config --version
      - checkout
      - run: |
          curl -#fSLo shellcheck.tar.xz $SHELLCHECK_URL
          tar --xz -xvf shellcheck.tar.xz
          mv shellcheck-*/shellcheck /usr/local/bin
          rm -vr shellcheck-*/ shellcheck.tar.xz
          shellcheck --version
      - run: |
          shellcheck ./kerl
          shellcheck ./bash_completion/kerl
          # https://github.com/koalaman/shellcheck/issues/809
          # shellcheck ./zsh_completion/_kerl
      - run: ./kerl update releases
      - run: *build_on_all_cores
      - run: cat build.log
      - run: "! grep -F 'ODBC library' build.log"
      - run: "! grep -F 'wx will NOT be usable' build.log"
      - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
      - run: ./kerl status
      - run: |
          shellcheck $(./kerl path install_$_KERL_VSN)/activate
          # shellcheck $(./kerl path install_$_KERL_VSN)/activate.csh
          # shellcheck $(./kerl path install_$_KERL_VSN)/activate.fish
      - run: |
          source $(./kerl path install_$_KERL_VSN)/activate
          for app in odbc crypto wx; do
            echo TEST app $app
            erl -noshell -eval "case application:ensure_all_started($app) of {ok,[_|_]} -> init:stop(); _ -> init:stop(1) end."
            echo PASS app $app
          done
          kerl_deactivate
      - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
      - run: ./kerl delete build "$_KERL_VSN"

  trusty_17.0:
    docker:
      - image: ubuntu:trusty
    environment:
      - _KERL_VSN: '17.0'
    # - KERL_BUILD_BACKEND: git ## This would cause the build to fail?!
      - KERL_CONFIGURE_DISABLE_APPLICATIONS: 'wx odbc'
    steps:
      - run: apt update && apt upgrade -y
      - run: |
          apt install -y --no-install-recommends \
             curl ca-certificates \
             git autoconf automake dpkg-dev gcc g++ make libncurses-dev \
             libssl1.0.0 libssl-dev libsctp1 libsctp-dev
      - checkout
      - run: ./kerl update releases
      - run: *build_on_all_cores
      - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
      - run: ./kerl status
      - run: *activate_then_test_for_crypto
      - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
      - run: ./kerl delete build "$_KERL_VSN"

  debian8_R15B03-1:
    docker:
      - image: debian:8
    environment:
      - _KERL_VSN: R15B03-1
      - KERL_BUILD_BACKEND: git
      - KERL_CONFIGURE_DISABLE_APPLICATIONS: odbc
    steps:
      - run: apt-get update && apt-get upgrade -y
      - run: |
          apt-get install -y git curl build-essential automake autoconf libncurses-dev libssl-dev
      - checkout
      - run: ./kerl update releases
      - run: *build_on_all_cores
      - run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
      - run: ./kerl status
      - run: *activate_then_test_for_crypto
      - run: ./kerl delete installation $(./kerl path install_$_KERL_VSN)
      - run: ./kerl delete build "$_KERL_VSN"