mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 11:42:21 +00:00
The Mac runner is still broken: intermittent pipe- and signal-related regressions that do not occur on any real Mac. https://github.com/ksh93/ksh/runs/1892358749 .github/workflows/ci.yml: - Remove the macOS runner. src/cmd/ksh93/tests/pty.sh: - Do not skip pty tests if there is no tty. (On FreeBSD with no tty, the tty builtin would need to be enabled in builtins.c.) src/cmd/ksh93/tests/bracket.sh: - Don't be noisy when skipping unavailable locales.
32 lines
973 B
YAML
32 lines
973 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
Linux:
|
|
name: Linux
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: bin/package make
|
|
- name: Regression tests
|
|
run: |
|
|
PS4="$PS4[ci.yml] "
|
|
set -o xtrace
|
|
export TZ=UTC
|
|
ulimit -n 1024
|
|
: default regression tests &&
|
|
bin/shtests &&
|
|
: regression tests with OS-provided UTF-8 locales &&
|
|
LANG=nl_NL.UTF-8 bin/shtests --locale --nocompile &&
|
|
LANG=ja_JP.UTF-8 bin/shtests --locale --nocompile &&
|
|
: disable most SHOPTs, rebuild ksh &&
|
|
sed --regexp-extended --in-place=.orig \
|
|
'/^SHOPT (2DMATCH|AUDIT|BGX|BRACEPAT|DYNAMIC|EDPREDICT|ESH|FIXEDARRAY|HISTEXPAND|MULTIBYTE|NAMESPACE|OPTIMIZE|SUID_EXEC|STATS|VSH)=/ s/=1/=0/' \
|
|
src/cmd/ksh93/SHOPT.sh &&
|
|
bin/package make &&
|
|
: default regression tests with SHOPTs disabled &&
|
|
bin/shtests
|