2021-06-13 04:37:00 +00:00
name : GnuTests
2021-01-21 07:19:08 +00:00
2022-02-22 14:00:37 +00:00
# spell-checker:ignore (names) gnulib ; (jargon) submodules ; (people) Dawid Dziurla * dawidd ; (utils) autopoint chksum gperf pyinotify shopt texinfo ; (vars) FILESET SUBDIRS XPASS
# * note: to run a single test => `REPO/util/run-gnu-test.sh PATH/TO/TEST/SCRIPT`
2021-06-12 22:34:48 +00:00
2021-01-21 07:19:08 +00:00
on : [ push, pull_request]
jobs :
gnu :
name : Run GNU tests
runs-on : ubuntu-latest
steps :
2022-02-03 19:42:13 +00:00
- name : Initialize workflow variables
id : vars
shell : bash
run : |
## VARs setup
outputs() { step_id="vars"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo ::set-output name=${var}::${!var}; done; }
# * config
path_GNU="gnu"
2022-02-11 06:52:28 +00:00
path_GNU_tests="${path_GNU}/tests"
2022-02-03 19:42:13 +00:00
path_UUTILS="uutils"
path_reference="reference"
2022-02-11 06:52:28 +00:00
outputs path_GNU path_GNU_tests path_reference path_UUTILS
2022-02-03 19:42:13 +00:00
#
2022-02-06 18:14:12 +00:00
repo_default_branch="${{ github.event.repository.default_branch }}"
2022-02-03 19:42:13 +00:00
repo_GNU_ref="v9.0"
repo_reference_branch="${{ github.event.repository.default_branch }}"
2022-02-12 17:13:04 +00:00
outputs repo_default_branch repo_GNU_ref repo_reference_branch
2022-02-03 19:42:13 +00:00
#
SUITE_LOG_FILE="${path_GNU_tests}/test-suite.log"
TEST_LOGS_GLOB="${path_GNU_tests}/**/*.log" ## note: not usable at bash CLI; [why] double globstar not enabled by default b/c MacOS includes only bash v3 which doesn't have double globstar support
TEST_FILESET_PREFIX='test-fileset-IDs.sha1#'
TEST_FILESET_SUFFIX='.txt'
TEST_SUMMARY_FILE='gnu-result.json'
2022-02-13 15:51:24 +00:00
TEST_FULL_SUMMARY_FILE='gnu-full-result.json'
outputs SUITE_LOG_FILE TEST_FILESET_PREFIX TEST_FILESET_SUFFIX TEST_LOGS_GLOB TEST_SUMMARY_FILE TEST_FULL_SUMMARY_FILE
2022-02-11 06:52:28 +00:00
- name : Checkout code (uutil)
2021-01-21 07:19:08 +00:00
uses : actions/checkout@v2
with :
2022-02-03 19:42:13 +00:00
path : '${{ steps.vars.outputs.path_UUTILS }}'
2022-02-11 06:52:28 +00:00
- name : Checkout code (GNU coreutils)
2021-01-21 07:19:08 +00:00
uses : actions/checkout@v2
with :
repository : 'coreutils/coreutils'
2022-02-03 19:42:13 +00:00
path : '${{ steps.vars.outputs.path_GNU }}'
ref : ${{ steps.vars.outputs.repo_GNU_ref }}
2022-02-11 06:52:28 +00:00
submodules : recursive
2022-02-03 19:42:13 +00:00
- name : Retrieve reference artifacts
uses : dawidd6/action-download-artifact@v2
2022-02-08 17:11:15 +00:00
# ref: <https://github.com/dawidd6/action-download-artifact>
2022-02-03 19:42:13 +00:00
continue-on-error : true ## don't break the build for missing reference artifacts (may be expired or just not generated yet)
with :
workflow : GnuTests.yml
branch : "${{ steps.vars.outputs.repo_reference_branch }}"
2022-02-08 17:11:15 +00:00
# workflow_conclusion: success ## (default); * but, if commit with failed GnuTests is merged into the default branch, future commits will all show regression errors in GnuTests CI until o/w fixed
workflow_conclusion : completed ## continually recalibrates to last commit of default branch with a successful GnuTests (ie, "self-heals" from GnuTest regressions, but needs more supervision for/of regressions)
2022-02-03 19:42:13 +00:00
path : "${{ steps.vars.outputs.path_reference }}"
2021-01-21 07:19:08 +00:00
- name : Install `rust` toolchain
uses : actions-rs/toolchain@v1
with :
toolchain : stable
default : true
profile : minimal # minimal component installation (ie, no documentation)
components : rustfmt
2021-06-12 22:34:48 +00:00
- name : Install dependencies
2021-01-21 07:19:08 +00:00
shell : bash
run : |
2021-06-12 22:34:48 +00:00
## Install dependencies
2021-02-03 21:27:30 +00:00
sudo apt-get update
2022-02-04 11:17:30 +00:00
sudo apt-get install autoconf autopoint bison texinfo gperf gcc g++ gdb python-pyinotify jq valgrind libexpect-perl
2022-02-12 18:20:17 +00:00
- name : Add various locales
shell : bash
run : |
echo "Before:"
locale -a
## Some tests fail with 'cannot change locale (en_US.ISO-8859-1): No such file or directory'
## Some others need a French locale
sudo locale-gen
sudo locale-gen fr_FR
sudo locale-gen fr_FR.UTF-8
sudo update-locale
echo "After:"
locale -a
2021-05-21 11:27:35 +00:00
- name : Build binaries
shell : bash
run : |
2021-06-12 22:34:48 +00:00
## Build binaries
2022-02-03 19:42:13 +00:00
cd '${{ steps.vars.outputs.path_UUTILS }}'
2021-06-12 22:34:48 +00:00
bash util/build-gnu.sh
2021-01-21 22:56:02 +00:00
- name : Run GNU tests
shell : bash
run : |
2022-02-03 19:42:13 +00:00
path_GNU='${{ steps.vars.outputs.path_GNU }}'
path_UUTILS='${{ steps.vars.outputs.path_UUTILS }}'
bash "${path_UUTILS}/util/run-gnu-test.sh"
2022-02-13 15:51:24 +00:00
- name : Extract testing info into JSON
shell : bash
run : |
path_UUTILS='${{ steps.vars.outputs.path_UUTILS }}'
python ${path_UUTILS}/util/gnu-json-result.py ${{ steps.vars.outputs.path_GNU_tests }} > ${{ steps.vars.outputs.TEST_FULL_SUMMARY_FILE }}
2022-02-03 19:42:13 +00:00
- name : Extract/summarize testing info
id : summary
2021-02-11 14:42:41 +00:00
shell : bash
run : |
2022-02-03 19:42:13 +00:00
## Extract/summarize testing info
outputs() { step_id="summary"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo ::set-output name=${var}::${!var}; done; }
#
SUITE_LOG_FILE='${{ steps.vars.outputs.SUITE_LOG_FILE }}'
if test -f "${SUITE_LOG_FILE}"
2021-03-21 14:45:34 +00:00
then
2022-02-03 19:42:13 +00:00
TOTAL=$(sed -n "s/.*# TOTAL: \(.*\)/\1/p" "${SUITE_LOG_FILE}" | tr -d '\r' | head -n1)
PASS=$(sed -n "s/.*# PASS: \(.*\)/\1/p" "${SUITE_LOG_FILE}" | tr -d '\r' | head -n1)
SKIP=$(sed -n "s/.*# SKIP: \(.*\)/\1/p" "${SUITE_LOG_FILE}" | tr -d '\r' | head -n1)
FAIL=$(sed -n "s/.*# FAIL: \(.*\)/\1/p" "${SUITE_LOG_FILE}" | tr -d '\r' | head -n1)
XPASS=$(sed -n "s/.*# XPASS: \(.*\)/\1/p" "${SUITE_LOG_FILE}" | tr -d '\r' | head -n1)
ERROR=$(sed -n "s/.*# ERROR: \(.*\)/\1/p" "${SUITE_LOG_FILE}" | tr -d '\r' | head -n1)
2021-06-22 16:03:12 +00:00
if [[ "$TOTAL" -eq 0 || "$TOTAL" -eq 1 ]]; then
2022-02-03 19:42:13 +00:00
echo "::error ::Failed to parse test results from '${SUITE_LOG_FILE}'; failing early"
2022-02-02 05:01:56 +00:00
exit 1
2021-06-22 12:25:32 +00:00
fi
2021-06-12 22:34:48 +00:00
output="GNU tests summary = TOTAL: $TOTAL / PASS: $PASS / FAIL: $FAIL / ERROR: $ERROR"
echo "${output}"
if [[ "$FAIL" -gt 0 || "$ERROR" -gt 0 ]]; then echo "::warning ::${output}" ; fi
2021-05-18 19:31:55 +00:00
jq -n \
2021-05-19 18:33:28 +00:00
--arg date "$(date --rfc-email)" \
2021-05-22 19:59:54 +00:00
--arg sha "$GITHUB_SHA" \
2021-05-18 19:31:55 +00:00
--arg total "$TOTAL" \
--arg pass "$PASS" \
--arg skip "$SKIP" \
--arg fail "$FAIL" \
--arg xpass "$XPASS" \
--arg error "$ERROR" \
2022-02-03 19:42:13 +00:00
'{($date): { sha: $sha, total: $total, pass: $pass, skip: $skip, fail: $fail, xpass: $xpass, error: $error, }}' > '${{ steps.vars.outputs.TEST_SUMMARY_FILE }}'
HASH=$(sha1sum '${{ steps.vars.outputs.TEST_SUMMARY_FILE }}' | cut --delim=" " -f 1)
outputs HASH
2021-03-21 14:45:34 +00:00
else
2022-02-03 19:42:13 +00:00
echo "::error ::Failed to find summary of test results (missing '${SUITE_LOG_FILE}'); failing early"
exit 1
2021-03-21 14:45:34 +00:00
fi
2022-03-18 11:01:48 +00:00
# Compress logs before upload (fails otherwise)
gzip ${{ steps.vars.outputs.TEST_LOGS_GLOB }}
2022-02-03 19:42:13 +00:00
- name : Reserve SHA1/ID of 'test-summary'
uses : actions/upload-artifact@v2
2021-05-18 19:31:55 +00:00
with :
2022-02-03 19:42:13 +00:00
name : "${{ steps.summary.outputs.HASH }}"
path : "${{ steps.vars.outputs.TEST_SUMMARY_FILE }}"
- name : Reserve test results summary
uses : actions/upload-artifact@v2
2021-08-05 14:44:03 +00:00
with :
2022-02-03 19:42:13 +00:00
name : test-summary
path : "${{ steps.vars.outputs.TEST_SUMMARY_FILE }}"
- name : Reserve test logs
uses : actions/upload-artifact@v2
2021-08-08 14:48:38 +00:00
with :
2022-02-03 19:42:13 +00:00
name : test-logs
path : "${{ steps.vars.outputs.TEST_LOGS_GLOB }}"
2022-02-13 15:51:24 +00:00
- name : Upload full json results
uses : actions/upload-artifact@v2
with :
name : gnu-full-result.json
path : ${{ steps.vars.outputs.TEST_FULL_SUMMARY_FILE }}
2022-02-03 19:42:13 +00:00
- name : Compare test failures VS reference
2021-08-08 14:48:38 +00:00
shell : bash
run : |
2022-02-14 03:46:45 +00:00
have_new_failures=""
2022-02-03 19:42:13 +00:00
REF_LOG_FILE='${{ steps.vars.outputs.path_reference }}/test-logs/test-suite.log'
REF_SUMMARY_FILE='${{ steps.vars.outputs.path_reference }}/test-summary/gnu-result.json'
if test -f "${REF_LOG_FILE}"; then
2022-02-14 03:46:45 +00:00
echo "Reference SHA1/ID: $(sha1sum -- "${REF_SUMMARY_FILE}")"
2022-02-03 19:42:13 +00:00
REF_FAILING=$(sed -n "s/^FAIL: \([[:print:]]\+\).*/\1/p" "${REF_LOG_FILE}" | sort)
NEW_FAILING=$(sed -n "s/^FAIL: \([[:print:]]\+\).*/\1/p" '${{ steps.vars.outputs.path_GNU_tests }}/test-suite.log' | sort)
2022-02-14 03:46:45 +00:00
for LINE in ${REF_FAILING}
2022-02-03 19:42:13 +00:00
do
2022-02-14 03:46:45 +00:00
if ! grep -Fxq ${LINE}<<<"${NEW_FAILING}"; then
2022-03-30 02:47:05 +00:00
echo "::warning ::Congrats! The gnu test ${LINE} is no longer failing!"
2022-02-03 19:42:13 +00:00
fi
done
2022-02-14 03:46:45 +00:00
for LINE in ${NEW_FAILING}
2022-02-03 19:42:13 +00:00
do
2022-02-14 03:46:45 +00:00
if ! grep -Fxq ${LINE}<<<"${REF_FAILING}"
2022-02-03 19:42:13 +00:00
then
2022-02-14 03:46:45 +00:00
echo "::error ::GNU test failed: ${LINE}. ${LINE} is passing on '${{ steps.vars.outputs.repo_default_branch }}'. Maybe you have to rebase?"
have_new_failures="true"
2022-02-03 19:42:13 +00:00
fi
done
else
echo "::warning ::Skipping test failure comparison; no prior reference test logs are available."
fi
2022-02-14 03:46:45 +00:00
if test -n "${have_new_failures}" ; then exit -1 ; fi
2022-02-03 19:42:13 +00:00
- name : Compare test summary VS reference
2022-02-14 03:46:45 +00:00
if : success() || failure() # run regardless of prior step success/failure
2021-08-05 14:44:03 +00:00
shell : bash
run : |
2022-02-03 19:42:13 +00:00
REF_SUMMARY_FILE='${{ steps.vars.outputs.path_reference }}/test-summary/gnu-result.json'
if test -f "${REF_SUMMARY_FILE}"; then
2022-02-14 03:46:45 +00:00
echo "Reference SHA1/ID: $(sha1sum -- "${REF_SUMMARY_FILE}")"
2022-02-03 19:42:13 +00:00
mv "${REF_SUMMARY_FILE}" main-gnu-result.json
python uutils/util/compare_gnu_result.py
else
echo "::warning ::Skipping test summary comparison; no prior reference summary is available."
fi
2022-02-03 10:03:48 +00:00
gnu_coverage :
name : Run GNU tests with coverage
runs-on : ubuntu-latest
steps :
- name : Checkout code uutil
uses : actions/checkout@v2
with :
path : 'uutils'
- name : Checkout GNU coreutils
uses : actions/checkout@v2
with :
repository : 'coreutils/coreutils'
path : 'gnu'
ref : 'v9.0'
submodules : recursive
- name : Install `rust` toolchain
uses : actions-rs/toolchain@v1
with :
2022-03-25 08:41:01 +00:00
toolchain : nightly-2022-03-21
2022-02-03 10:03:48 +00:00
default : true
profile : minimal # minimal component installation (ie, no documentation)
components : rustfmt
- name : Install dependencies
run : |
sudo apt update
sudo apt install autoconf autopoint bison texinfo gperf gcc g++ gdb python-pyinotify jq valgrind libexpect-perl -y
- name : Add various locales
run : |
echo "Before:"
locale -a
## Some tests fail with 'cannot change locale (en_US.ISO-8859-1): No such file or directory'
## Some others need a French locale
sudo locale-gen
sudo locale-gen fr_FR
sudo locale-gen fr_FR.UTF-8
sudo update-locale
echo "After:"
locale -a
- name : Build binaries
env :
CARGO_INCREMENTAL : "0"
RUSTFLAGS : "-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Coverflow-checks=off -Zpanic_abort_tests -Cpanic=abort"
RUSTDOCFLAGS : "-Cpanic=abort"
run : |
cd uutils
UU_MAKE_PROFILE=debug bash util/build-gnu.sh
- name : Run GNU tests
run : bash uutils/util/run-gnu-test.sh
- name : "`grcov` ~ install"
uses : actions-rs/install@v0.1
with :
crate : grcov
version : latest
use-tool-cache : false
- name : Generate coverage data (via `grcov`)
id : coverage
run : |
## Generate coverage data
cd uutils
COVERAGE_REPORT_DIR="target/debug"
COVERAGE_REPORT_FILE="${COVERAGE_REPORT_DIR}/lcov.info"
mkdir -p "${COVERAGE_REPORT_DIR}"
2022-02-20 11:15:48 +00:00
sudo chown -R "$(whoami)" "${COVERAGE_REPORT_DIR}"
2022-02-03 10:03:48 +00:00
# display coverage files
grcov . --output-type files --ignore build.rs --ignore "vendor/*" --ignore "/*" --ignore "[a-zA-Z]:/*" --excl-br-line "^\s*((debug_)?assert(_eq|_ne)?!|#\[derive\()" | sort --unique
# generate coverage report
grcov . --output-type lcov --output-path "${COVERAGE_REPORT_FILE}" --branch --ignore build.rs --ignore "vendor/*" --ignore "/*" --ignore "[a-zA-Z]:/*" --excl-br-line "^\s*((debug_)?assert(_eq|_ne)?!|#\[derive\()"
echo ::set-output name=report::${COVERAGE_REPORT_FILE}
- name : Upload coverage results (to Codecov.io)
uses : codecov/codecov-action@v2
with :
file : ${{ steps.coverage.outputs.report }}
flags : gnutests
name : gnutests
working-directory : uutils