-
-
Notifications
You must be signed in to change notification settings - Fork 21
238 lines (234 loc) · 9.64 KB
/
scripts-testing.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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
---
# SPDX-FileCopyrightText: (c) 2024 ale5000
# SPDX-License-Identifier: GPL-3.0-or-later
name: "Scripts testing"
permissions: {}
on:
push:
paths:
- ".github/workflows/scripts-testing.yml"
- "tools/*.sh"
- "includes/*.sh"
- "cmdline.sh"
pull_request:
paths:
- ".github/workflows/scripts-testing.yml"
- "tools/*.sh"
- "includes/*.sh"
- "cmdline.sh"
workflow_dispatch:
jobs:
base:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, macos-13]
fail-fast: false
name: "${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
env:
cache-key: "shells"
permissions:
actions: write # Needed to delete a cache
steps:
- name: "Checkout sources"
uses: actions/checkout@v4
- name: "Prepare cache"
id: cache-action
if: "${{ runner.os == 'Linux' }}"
uses: actions/cache@v4
with:
path: "cache/shells"
key: "${{ runner.os }}-${{ env.cache-key }}"
- name: "Prepare shells"
id: prepare-shells
if: "${{ steps.cache-action.outcome != 'skipped' }}"
shell: bash
run: |
# Preparing shells...
CACHE_IS_OUTDATED='false'
# shellcheck disable=SC2016 # Intended: Expressions don't expand in single quotes
{
readonly current_os='${{ runner.os }}'
readonly shells_dir='${{ github.workspace }}/cache/shells'
}
prepare_shell()
{
if test ! -s "${shells_dir:?}/${1:?}.${2:?}"; then
printf '%s\n' "Downloading '${1?}'..."
if wget -q -O "${shells_dir:?}/${1:?}.${2:?}" -- "${3:?}" && test -s "${shells_dir:?}/${1:?}.${2:?}"; then
: # OK
else
rm -f -- "${shells_dir:?}/${1:?}.${2:?}" || :
return 1
fi
CACHE_IS_OUTDATED='true'
fi
mkdir -p -- "${shells_dir:?}/extracted/${1:?}" || return "${?}"
if test "${2:?}" = 'bin'; then
cp -f -p -- "${shells_dir:?}/${1:?}.${2:?}" "${shells_dir:?}/extracted/${1:?}/${1:?}" || return "${?}"
chmod +x -- "${shells_dir:?}/extracted/${1:?}/${1:?}" || return "${?}"
else
tar -x -f "${shells_dir:?}/${1:?}.${2:?}" -C "${shells_dir:?}/extracted/${1:?}" || return "${?}"
fi
printf '%s\n' "${shells_dir:?}/extracted/${1:?}" 1>> "${shells_dir:?}/extracted/list.dat" || return "${?}"
}
if command 1> /dev/null -v 'sudo' && legacy_bb="$(command -v 'busybox')" && legacy_bb_dir="$(dirname "${legacy_bb:?}")"; then
sudo mv -f -- "${legacy_bb:?}" "${legacy_bb_dir:?}/busybox-legacy" || exit "${?}"
fi
mkdir -p -- "${shells_dir:?}/extracted" || exit "${?}"
rm -f -- "${shells_dir:?}/extracted/list.dat" || exit "${?}"
touch -- "${shells_dir:?}/extracted/list.dat" || exit "${?}"
if test "${current_os:?}" = 'Linux'; then
prepare_shell 'busybox' 'bin' 'https://busybox.net/downloads/binaries/1.35.0-x86_64-linux-musl/busybox'
prepare_shell 'busybox-x86' 'bin' 'https://busybox.net/downloads/binaries/1.30.0-i686/busybox'
prepare_shell 'bosh' 'tar.xz' 'http://fuz.su/pub/schilytools/bin/schily-2024-03-21-x86_64-linux-gcc.tar.xz'
fi
printf 'cache_is_outdated=%s\n' "${CACHE_IS_OUTDATED:?}" >> "${GITHUB_OUTPUT:?}"
- name: "Delete outdated cache"
if: "${{ steps.cache-action.outputs.cache-hit && steps.prepare-shells.outputs.cache_is_outdated == 'true' }}"
shell: bash
run: |
# Deleting outdated cache...
gh extension install 'actions/gh-actions-cache' || exit "${?}"
gh actions-cache delete '${{ runner.os }}-${{ env.cache-key }}' --confirm || exit "${?}"
printf '%s\n' 'Cache deleted.'
env:
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: "Test scripts"
shell: bash
run: |
# Testing scripts...
EXIT_CODE='0'
SH_IS_BASH='false'
ORIGINAL_KSH="$(command -v 'ksh' || :)"
# shellcheck disable=SC2016 # Intended: Expressions don't expand in single quotes
{
readonly current_os='${{ runner.os }}'
readonly workspace_dir='${{ github.workspace }}'
readonly shells_dir='${{ github.workspace }}/cache/shells'
}
if test -f "${shells_dir:?}/extracted/list.dat" && dl_shells="$(tr -- '\n' ':' 0< "${shells_dir:?}/extracted/list.dat")" && dl_shells="${dl_shells%':'}" && test -n "${dl_shells?}"; then
PATH="${PATH:-/usr/bin}:${dl_shells:?}" || exit "${?}"
fi
if test "${current_os:?}" = 'Linux'; then PATH="${PATH:-/usr/bin}:${workspace_dir:?}/cache/shells/extracted/bosh/opt/schily/bin" || exit "${?}"; fi
if diff 1> /dev/null 2>&1 -- "$(command -v 'sh' || :)" "$(command -v 'bash' || :)"; then SH_IS_BASH='true'; fi
if test "${current_os:?}" = 'Linux'; then
sudo apt-get -y -qq install 'mksh' 'yash' 'posh' 1> /dev/null
elif test "${current_os:?}" = 'macOS'; then
brew 1> /dev/null install --quiet 'oils-for-unix' 'mksh' 'oksh' 'ksh93' 'yash'
else
choco 1> /dev/null install 'busybox' -y --no-progress
#choco install 'schily-cdrtools' --pre -y --no-progress
fi
#
resolve_base()
{
local _rb_shell
_rb_shell="$(command -v "${1:?}")" || return "${?}"
_rb_shell="$(realpath "${_rb_shell:?}")" || return "${?}"
basename "${_rb_shell:?}" || return "${?}"
}
not_already_excuted()
{
local _shell
_shell="$(realpath "${1:?}")" || return 2
case "${EXECUTED_LIST?}|" in
*"|${_shell:?}|"*) return 1 ;; # Already executed
*) ;;
esac
EXECUTED_LIST="${EXECUTED_LIST?}|${_shell:?}"
return 0 # NOT already executed
}
skip()
{
local _s_shell
_s_shell=''
if test "${SH_IS_BASH:?}" = 'true'; then
case "${2:?}" in
bash) return 0 ;; # Skip
sh) _s_shell='bash' ;; # Evaluate as bash
*) ;;
esac
fi
if test -n "${_s_shell?}"; then
:
elif test "${2:?}" = 'ksh93' || test "${2:?}" = 'osh' || test "${2:?}" = 'bosh'; then
_s_shell="${2:?}"
else
_s_shell="$(resolve_base "${2:?}")" || _s_shell="${2:?}"
fi
if test "${1:?}" = 'cmdline.sh'; then
case "${_s_shell?}" in
#ksh) return 0 ;;
obosh | busybox-x86) return 0 ;; # Skip
*) ;;
esac
else
case "${_s_shell?}" in
osh) return 0 ;; # Skip until is fixed
obosh) return 0 ;; # Skip
*) ;;
esac
fi
return 1 # Execute
}
set_bb_applet()
{
if test "${CURRENT_SHELL:-none}" != "${1:?}"; then
CURRENT_APPLET=''
CURRENT_SHELL="${1:?}"
fi
case "${CURRENT_APPLET?}" in
ash) CURRENT_APPLET='hush' ;;
*) CURRENT_APPLET='ash' ;;
esac
}
test_on_all_shells()
{
local _shell _shell_cmd _status
EXECUTED_LIST=''
for _shell in sh dash bash busybox-legacy busybox busybox-x86 busybox-x86 ash hush mksh pdksh oksh ksh88 ksh93 ksh zsh yash posh osh bosh pbosh obosh; do
if test "${_shell:?}" = 'ksh' && test -n "${ORIGINAL_KSH?}"; then _shell="${ORIGINAL_KSH:?}"; fi
if ! _shell_cmd="$(command -v "${_shell:?}")" || skip "${1:?}" "${_shell:?}"; then continue; fi
if test "${_shell:?}" != 'busybox-x86' && ! not_already_excuted "${_shell_cmd:?}"; then continue; fi
printf 'SHELL: %s - SCRIPT: %s\n\n' "${_shell_cmd:?}" "${1:?}"
_status='0'
case "${_shell:?}" in
'busybox'*)
set_bb_applet "${_shell_cmd:?}"
"${_shell_cmd:?}" "${CURRENT_APPLET:?}" "${workspace_dir:?}/${1:?}" ${2-} || _status="${?}"
;;
*) "${_shell_cmd:?}" "${workspace_dir:?}/${1:?}" ${2-} || _status="${?}" ;;
esac
test "${_status:?}" = 0 || EXIT_CODE="${_status:?}"
printf '\nRETURN CODE:%s\n\n' "${_status:?}"
done
unset CURRENT_SHELL CURRENT_APPLET
}
list_scripts()
{
printf '%s|%s\n' 'tools/bits-info.sh' '-i'
printf '%s\n' 'cmdline.sh'
}
main()
{
local backup_ifs _script
export ONLY_FOR_TESTING='true'
backup_ifs="${IFS-}"
IFS=$'\n'
set -- $(list_scripts) || exit "${?}"
IFS="${backup_ifs}"
for _script in "${@}"; do
test_on_all_shells "$(printf '%s\n' "${_script:?}" | cut -d '|' -f '1' || :)" "$(printf '%s\n' "${_script:?}" | cut -d '|' -f '2-' -s || :)"
printf '%s\n' "---"
done
}
main
exit "${EXIT_CODE:?}"
- name: "Clean extracted files"
if: "${{ always() && steps.cache-action.outcome != 'skipped' }}"
shell: bash
run: |
# Cleaning extracted files...
readonly shells_dir='${{ github.workspace }}/cache/shells'
rm -f -r -- "${shells_dir:?}/extracted" || exit $?