-
Notifications
You must be signed in to change notification settings - Fork 234
163 lines (163 loc) · 6.64 KB
/
ci.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
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
---
name: CI
'on':
push:
branches:
- master
pull_request:
branches:
- "*"
workflow_dispatch: {}
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
env:
ERLC_USE_SERVER: true
KERL_DEBUG: 'yes'
jobs:
ci:
name: CI OTP ${{matrix.otp_vsn}}, on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
otp_vsn: ['25.0', '25', '26', '27', 'master']
os: [ubuntu-24.04, macos-14]
steps:
- name: Update env.
run: |
if [[ ${{matrix.os}} == macos* ]]; then
/bin/bash -c "$(curl -fsSL \
https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=yes \
brew install wxwidgets fish shellcheck shfmt coreutils [email protected]
else
sudo sed -i 's/azure\.//' /etc/apt/sources.list # Reduces chance of time-outs
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get install -y --no-install-recommends \
git curl libssl-dev make autoconf libncurses-dev gcc g++ default-jdk \
unixodbc-dev libwxgtk3.2-dev libwxgtk-webview3.2-dev xsltproc \
libxml2-utils libsctp-dev lksctp-tools software-properties-common shellcheck \
shfmt
sudo apt-add-repository -y ppa:fish-shell/release-3
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends fish
sudo apt-get install -y --no-install-recommends csh
fi
echo 'KERL_RELEASE_TARGET=debug opt' >> $GITHUB_ENV
- name: Git checkout
uses: actions/checkout@v4
- name: Update OTP releases
run: ./kerl update releases
- name: Choose OTP version
run: |
_VERSION="${{matrix.otp_vsn}}"
case "$_VERSION" in
master)
echo '_KERL_PREFIX_GIT=git' >> $GITHUB_ENV
echo '_KERL_PREFIX_GIT_TARGET=https://github.com/erlang/otp.git' >> $GITHUB_ENV
echo 'KERL_BUILD_DOCS=yes' >> $GITHUB_ENV
echo 'KERL_DOC_TARGETS="html chunks"' >> $GITHUB_ENV
_KERL_REL=git
;;
*)
_VERSION=$(./kerl list releases all | grep "^${_VERSION}" | tail -1)
_KERL_REL=${_VERSION}
;;
esac
echo "_KERL_VSN=${_VERSION}" >> $GITHUB_ENV
echo "_KERL_REL=${_KERL_REL}" >> $GITHUB_ENV
- name: Build chosen version
# yamllint disable rule:line-length
run: |
echo "OpenSSL is $(openssl version)"
export MAKEFLAGS=-j$(($(nproc) + 2))
if ! ./kerl build ${_KERL_PREFIX_GIT} \
${_KERL_PREFIX_GIT_TARGET} \
"${_KERL_VSN}" \
"${_KERL_VSN}"; then
## Print build log if it fails
cat ~/.kerl/builds/*/*.log
exit 1
fi
# yamllint disable rule:line-length
- name: Install chosen version
run: ./kerl install "$_KERL_VSN" "install_$_KERL_VSN"
- name: Check installation status (pre- activation)
run: ./kerl status || exit 0
- name: Validate installation
run: |
source $(./kerl path install_"$_KERL_VSN")/activate
erl -s crypto -s init stop
erl_call
- name: Check installation status (post- activation)
run: |
source $(./kerl path install_"$_KERL_VSN")/activate
./kerl status
- name: Test KERL_RELEASE_TARGET
# yamllint disable rule:line-length
run: |
source $(./kerl path install_"$_KERL_VSN")/activate
for r_type in $KERL_RELEASE_TARGET;
do
cerl -"$r_type" -noshell -eval '{ok, D} = file:open("build_type", [write]), io:format(D, "~s", [erlang:system_info(build_type)]), halt().'
if [ "${r_type}" != "$(cat build_type)" ]; then
echo "${r_type} != $(cat build_type)"
exit 1;
fi
done
kerl_deactivate
- name: Test emit-activate (sh/bash)
run: |
./kerl emit-activate $_KERL_REL $_KERL_VSN $(./kerl path install_"$_KERL_VSN") > activate-new
diff activate-new $(./kerl path install_"$_KERL_VSN")/activate
shellcheck -o all activate-new
shfmt -i 4 -d activate-new
rm -f activate-new
- name: Test emit-activate (fish)
run: |
./kerl emit-activate $_KERL_REL $_KERL_VSN $(./kerl path install_"$_KERL_VSN") fish > activate-fish-new
diff activate-fish-new $(./kerl path install_"$_KERL_VSN")/activate.fish
rm -f activate-fish-new
- name: Test emit-activate (csh)
run: |
./kerl emit-activate $_KERL_REL $_KERL_VSN $(./kerl path install_"$_KERL_VSN") csh > activate-csh-new
diff activate-csh-new $(./kerl path install_"$_KERL_VSN")/activate.csh
rm -f activate-csh-new
# yamllint enable rule:line-length
- name: Test activate/cleanup (sh/bash)
run: tests/activate_test.sh $_KERL_REL $_KERL_VSN $(./kerl path install_"$_KERL_VSN")
- name: Test activate/cleanup (fish)
run: tests/activate_test.fish $_KERL_REL $_KERL_VSN $(./kerl path install_"$_KERL_VSN")
- name: Test activate/cleanup (csh)
run: tests/activate_test.csh $_KERL_REL $_KERL_VSN $(./kerl path install_"$_KERL_VSN")
- name: Test version parse (sh/bash)
run: tests/version_parse_test.sh
- name: Delete installation
run: ./kerl delete installation $(./kerl path install_"$_KERL_VSN")
- name: Delete build
run: ./kerl delete build "$_KERL_VSN"
- name: Test build+install chosen version
run: |
export MAKEFLAGS="-j$(getconf _NPROCESSORS_ONLN)"
if ! ./kerl build-install ${_KERL_PREFIX_GIT} \
${_KERL_PREFIX_GIT_TARGET} \
"${_KERL_VSN}" \
"${_KERL_VSN}" \
"$PWD/build-install_${_KERL_VSN}"; then
## Print build log if it fails
cat ~/.kerl/builds/*/*.log
exit 1
fi
- name: Check installation status (pre- activation)
run: ./kerl status || exit 0
- name: Validate installation (build+install)
run: |
source $(./kerl path build-install_"${_KERL_VSN}")/activate
erl -s crypto -s init stop
erl_call
- name: Check installation status (post- activation)
run: |
source $(./kerl path build-install_"${_KERL_VSN}")/activate
./kerl status