mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
794df2ae7a
Fails with: ``` 2023-03-01T22:02:40.2587471Z configure: WARNING: libacl development library was not found or not usable. 2023-03-01T22:02:40.2588131Z configure: WARNING: GNU coreutils will be built without ACL support. 2023-03-01T22:03:03.7621309Z configure: WARNING: libattr development library was not found or not usable. 2023-03-01T22:03:03.7621976Z configure: WARNING: GNU coreutils will be built without xattr support. 2023-03-01T22:03:04.6538269Z configure: WARNING: libcap library was not found or not usable. 2023-03-01T22:03:04.6539022Z configure: WARNING: GNU coreutils will be built without capability support. ```
367 lines
16 KiB
YAML
367 lines
16 KiB
YAML
name: GnuTests
|
|
|
|
# spell-checker:ignore (abbrev/names) CodeCov gnulib GnuTests
|
|
# spell-checker:ignore (jargon) submodules
|
|
# spell-checker:ignore (libs/utils) autopoint chksum gperf lcov libexpect pyinotify shopt texinfo valgrind
|
|
# spell-checker:ignore (options) Ccodegen Coverflow Cpanic Zpanic
|
|
# spell-checker:ignore (people) Dawid Dziurla * dawidd
|
|
# spell-checker:ignore (vars) FILESET SUBDIRS XPASS
|
|
|
|
# * note: to run a single test => `REPO/util/run-gnu-test.sh PATH/TO/TEST/SCRIPT`
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
# End the current execution if there is a new changeset in the PR.
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
|
|
|
jobs:
|
|
gnu:
|
|
permissions:
|
|
actions: read # for dawidd6/action-download-artifact to query and download artifacts
|
|
contents: read # for actions/checkout to fetch code
|
|
pull-requests: read # for dawidd6/action-download-artifact to query commit hash
|
|
name: Run GNU tests
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Initialize workflow variables
|
|
id: vars
|
|
shell: bash
|
|
run: |
|
|
## VARs setup
|
|
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
|
|
# * config
|
|
path_GNU="gnu"
|
|
path_GNU_tests="${path_GNU}/tests"
|
|
path_UUTILS="uutils"
|
|
path_reference="reference"
|
|
outputs path_GNU path_GNU_tests path_reference path_UUTILS
|
|
#
|
|
repo_default_branch="${{ github.event.repository.default_branch }}"
|
|
repo_GNU_ref="v9.1"
|
|
repo_reference_branch="${{ github.event.repository.default_branch }}"
|
|
outputs repo_default_branch repo_GNU_ref repo_reference_branch
|
|
#
|
|
SUITE_LOG_FILE="${path_GNU_tests}/test-suite.log"
|
|
ROOT_SUITE_LOG_FILE="${path_GNU_tests}/test-suite-root.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'
|
|
TEST_FULL_SUMMARY_FILE='gnu-full-result.json'
|
|
outputs SUITE_LOG_FILE ROOT_SUITE_LOG_FILE TEST_FILESET_PREFIX TEST_FILESET_SUFFIX TEST_LOGS_GLOB TEST_SUMMARY_FILE TEST_FULL_SUMMARY_FILE
|
|
- name: Checkout code (uutil)
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: '${{ steps.vars.outputs.path_UUTILS }}'
|
|
- name: Checkout code (GNU coreutils)
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: 'coreutils/coreutils'
|
|
path: '${{ steps.vars.outputs.path_GNU }}'
|
|
ref: ${{ steps.vars.outputs.repo_GNU_ref }}
|
|
submodules: recursive
|
|
- name: Retrieve reference artifacts
|
|
uses: dawidd6/action-download-artifact@v2
|
|
# ref: <https://github.com/dawidd6/action-download-artifact>
|
|
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 }}"
|
|
# 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)
|
|
path: "${{ steps.vars.outputs.path_reference }}"
|
|
- name: Install `rust` toolchain
|
|
run: |
|
|
## Install `rust` toolchain
|
|
rm -f "${HOME}/.cargo/bin/"{rustfmt,cargo-fmt}
|
|
rustup toolchain install stable -c rustfmt --profile minimal
|
|
rustup default stable
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: |
|
|
## Install dependencies
|
|
sudo apt-get update
|
|
sudo apt-get install -y autoconf autopoint bison texinfo gperf gcc g++ gdb python3-pyinotify jq valgrind libexpect-perl libacl1-dev libattr1-dev libcap-dev
|
|
- name: Add various locales
|
|
shell: bash
|
|
run: |
|
|
## Add various locales
|
|
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 --keep-existing fr_FR
|
|
sudo locale-gen --keep-existing fr_FR.UTF-8
|
|
sudo locale-gen --keep-existing sv_SE
|
|
sudo locale-gen --keep-existing sv_SE.UTF-8
|
|
sudo locale-gen --keep-existing en_US
|
|
sudo locale-gen --keep-existing ru_RU.KOI8-R
|
|
|
|
sudo update-locale
|
|
echo "After:"
|
|
locale -a
|
|
- name: Build binaries
|
|
shell: bash
|
|
run: |
|
|
## Build binaries
|
|
cd '${{ steps.vars.outputs.path_UUTILS }}'
|
|
bash util/build-gnu.sh
|
|
- name: Run GNU tests
|
|
shell: bash
|
|
run: |
|
|
## Run GNU tests
|
|
path_GNU='${{ steps.vars.outputs.path_GNU }}'
|
|
path_UUTILS='${{ steps.vars.outputs.path_UUTILS }}'
|
|
bash "${path_UUTILS}/util/run-gnu-test.sh"
|
|
- name: Run GNU root tests
|
|
shell: bash
|
|
run: |
|
|
## Run GNU root tests
|
|
path_GNU='${{ steps.vars.outputs.path_GNU }}'
|
|
path_UUTILS='${{ steps.vars.outputs.path_UUTILS }}'
|
|
bash "${path_UUTILS}/util/run-gnu-test.sh" run-root
|
|
- name: Extract testing info into JSON
|
|
shell: bash
|
|
run : |
|
|
## Extract testing info into JSON
|
|
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 }}
|
|
- name: Extract/summarize testing info
|
|
id: summary
|
|
shell: bash
|
|
run: |
|
|
## Extract/summarize testing info
|
|
outputs() { step_id="${{ github.action }}"; for var in "$@" ; do echo steps.${step_id}.outputs.${var}="${!var}"; echo "${var}=${!var}" >> $GITHUB_OUTPUT; done; }
|
|
#
|
|
path_UUTILS='${{ steps.vars.outputs.path_UUTILS }}'
|
|
#
|
|
SUITE_LOG_FILE='${{ steps.vars.outputs.SUITE_LOG_FILE }}'
|
|
ROOT_SUITE_LOG_FILE='${{ steps.vars.outputs.ROOT_SUITE_LOG_FILE }}'
|
|
ls -al ${SUITE_LOG_FILE} ${ROOT_SUITE_LOG_FILE}
|
|
|
|
if test -f "${SUITE_LOG_FILE}"
|
|
then
|
|
source ${path_UUTILS}/util/analyze-gnu-results.sh ${SUITE_LOG_FILE} ${ROOT_SUITE_LOG_FILE}
|
|
if [[ "$TOTAL" -eq 0 || "$TOTAL" -eq 1 ]]; then
|
|
echo "::error ::Failed to parse test results from '${SUITE_LOG_FILE}'; failing early"
|
|
exit 1
|
|
fi
|
|
output="GNU tests summary = TOTAL: $TOTAL / PASS: $PASS / FAIL: $FAIL / ERROR: $ERROR / SKIP: $SKIP"
|
|
echo "${output}"
|
|
if [[ "$FAIL" -gt 0 || "$ERROR" -gt 0 ]]; then echo "::warning ::${output}" ; fi
|
|
jq -n \
|
|
--arg date "$(date --rfc-email)" \
|
|
--arg sha "$GITHUB_SHA" \
|
|
--arg total "$TOTAL" \
|
|
--arg pass "$PASS" \
|
|
--arg skip "$SKIP" \
|
|
--arg fail "$FAIL" \
|
|
--arg xpass "$XPASS" \
|
|
--arg error "$ERROR" \
|
|
'{($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
|
|
else
|
|
echo "::error ::Failed to find summary of test results (missing '${SUITE_LOG_FILE}'); failing early"
|
|
exit 1
|
|
fi
|
|
# Compress logs before upload (fails otherwise)
|
|
gzip ${{ steps.vars.outputs.TEST_LOGS_GLOB }}
|
|
- name: Reserve SHA1/ID of 'test-summary'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: "${{ steps.summary.outputs.HASH }}"
|
|
path: "${{ steps.vars.outputs.TEST_SUMMARY_FILE }}"
|
|
- name: Reserve test results summary
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-summary
|
|
path: "${{ steps.vars.outputs.TEST_SUMMARY_FILE }}"
|
|
- name: Reserve test logs
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: test-logs
|
|
path: "${{ steps.vars.outputs.TEST_LOGS_GLOB }}"
|
|
- name: Upload full json results
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: gnu-full-result.json
|
|
path: ${{ steps.vars.outputs.TEST_FULL_SUMMARY_FILE }}
|
|
- name: Compare test failures VS reference
|
|
shell: bash
|
|
run: |
|
|
## Compare test failures VS reference
|
|
have_new_failures=""
|
|
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'
|
|
REPO_DEFAULT_BRANCH='${{ steps.vars.outputs.repo_default_branch }}'
|
|
# https://github.com/uutils/coreutils/issues/4294
|
|
# https://github.com/uutils/coreutils/issues/4295
|
|
IGNORE_INTERMITTENT='tests/tail-2/inotify-dir-recreate tests/misc/timeout tests/rm/rm1'
|
|
|
|
mkdir -p ${{ steps.vars.outputs.path_reference }}
|
|
|
|
COMMENT_DIR="${{ steps.vars.outputs.path_reference }}/comment"
|
|
mkdir -p ${COMMENT_DIR}
|
|
echo ${{ github.event.number }} > ${COMMENT_DIR}/NR
|
|
COMMENT_LOG="${COMMENT_DIR}/result.txt"
|
|
|
|
# The comment log might be downloaded from a previous run
|
|
# We only want the new changes, so remove it if it exists.
|
|
rm -f ${COMMENT_LOG}
|
|
touch ${COMMENT_LOG}
|
|
|
|
if test -f "${REF_LOG_FILE}"; then
|
|
echo "Reference SHA1/ID: $(sha1sum -- "${REF_SUMMARY_FILE}")"
|
|
REF_ERROR=$(sed -n "s/^ERROR: \([[:print:]]\+\).*/\1/p" "${REF_LOG_FILE}" | sort)
|
|
NEW_ERROR=$(sed -n "s/^ERROR: \([[:print:]]\+\).*/\1/p" '${{ steps.vars.outputs.path_GNU_tests }}/test-suite.log' | sort)
|
|
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)
|
|
for LINE in ${REF_FAILING}
|
|
do
|
|
if ! grep -Fxq ${LINE}<<<"${NEW_FAILING}"; then
|
|
MSG="Congrats! The gnu test ${LINE} is no longer failing!"
|
|
echo "::warning ::$MSG"
|
|
echo $MSG >> ${COMMENT_LOG}
|
|
fi
|
|
done
|
|
for LINE in ${NEW_FAILING}
|
|
do
|
|
if ! grep -Fxq ${LINE}<<<"${REF_FAILING}"
|
|
then
|
|
if ! grep ${LINE} ${IGNORE_INTERMITTENT}
|
|
then
|
|
MSG="GNU test failed: ${LINE}. ${LINE} is passing on '${{ steps.vars.outputs.repo_default_branch }}'. Maybe you have to rebase?"
|
|
echo "::error ::$MSG"
|
|
echo $MSG >> ${COMMENT_LOG}
|
|
have_new_failures="true"
|
|
else
|
|
MSG="Skip an intermittent issue ${LINE}"
|
|
echo "::warning ::$MSG"
|
|
echo $MSG >> ${COMMENT_LOG}
|
|
echo ""
|
|
fi
|
|
fi
|
|
done
|
|
for LINE in ${REF_ERROR}
|
|
do
|
|
if ! grep -Fxq ${LINE}<<<"${NEW_ERROR}"; then
|
|
MSG="Congrats! The gnu test ${LINE} is no longer ERROR!"
|
|
echo "::warning ::$MSG"
|
|
echo $MSG >> ${COMMENT_LOG}
|
|
fi
|
|
done
|
|
for LINE in ${NEW_ERROR}
|
|
do
|
|
if ! grep -Fxq ${LINE}<<<"${REF_ERROR}"
|
|
then
|
|
MSG="GNU test error: ${LINE}. ${LINE} is passing on '${{ steps.vars.outputs.repo_default_branch }}'. Maybe you have to rebase?"
|
|
echo "::error ::$MSG"
|
|
echo $MSG >> ${COMMENT_LOG}
|
|
have_new_failures="true"
|
|
fi
|
|
done
|
|
|
|
else
|
|
echo "::warning ::Skipping test failure comparison; no prior reference test logs are available."
|
|
fi
|
|
if test -n "${have_new_failures}" ; then exit -1 ; fi
|
|
- name: Upload comparison log (for GnuComment workflow)
|
|
if: success() || failure() # run regardless of prior step success/failure
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: comment
|
|
path: ${{ steps.vars.outputs.path_reference }}/comment/
|
|
- name: Compare test summary VS reference
|
|
if: success() || failure() # run regardless of prior step success/failure
|
|
shell: bash
|
|
run: |
|
|
## Compare test summary VS reference
|
|
REF_SUMMARY_FILE='${{ steps.vars.outputs.path_reference }}/test-summary/gnu-result.json'
|
|
if test -f "${REF_SUMMARY_FILE}"; then
|
|
echo "Reference SHA1/ID: $(sha1sum -- "${REF_SUMMARY_FILE}")"
|
|
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
|
|
|
|
gnu_coverage:
|
|
name: Run GNU tests with coverage
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout code uutil
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: 'uutils'
|
|
- name: Checkout GNU coreutils
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: 'coreutils/coreutils'
|
|
path: 'gnu'
|
|
ref: 'v9.1'
|
|
submodules: recursive
|
|
- name: Install `rust` toolchain
|
|
run: |
|
|
## Install `rust` toolchain
|
|
rm -f "${HOME}/.cargo/bin/"{rustfmt,cargo-fmt}
|
|
rustup toolchain install nightly -c rustfmt --profile minimal
|
|
rustup default nightly
|
|
- name: Install dependencies
|
|
run: |
|
|
## Install dependencies
|
|
sudo apt-get update
|
|
sudo apt-get install -y autoconf autopoint bison texinfo gperf gcc g++ gdb python3-pyinotify jq valgrind libexpect-perl libacl1-dev libattr1-dev libcap-dev
|
|
- name: Add various locales
|
|
run: |
|
|
## Add various locales
|
|
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 --keep-existing fr_FR
|
|
sudo locale-gen --keep-existing 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: |
|
|
## Build binaries
|
|
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"
|
|
run: cargo install grcov
|
|
- 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}"
|
|
sudo chown -R "$(whoami)" "${COVERAGE_REPORT_DIR}"
|
|
# 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 "report=${COVERAGE_REPORT_FILE}" >> $GITHUB_OUTPUT
|
|
- name: Upload coverage results (to Codecov.io)
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
file: ${{ steps.coverage.outputs.report }}
|
|
flags: gnutests
|
|
name: gnutests
|
|
working-directory: uutils
|