Files
codechecker-analysis-action/.github/workflows/test.yml
2021-11-29 16:22:28 +01:00

196 lines
6.4 KiB
YAML

name: 'Action test'
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- master
- 'releases/*'
paths-ignore:
- '**.md'
jobs:
# Fetch tests do not produce results, but test the functionality of the
# "grab LLVM" and "grab and build CodeChecker" features.
fetch_ubuntu-2004_latest-llvm:
name: "Fetch: Ubuntu Linux 20.04 (latest LLVM)"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: ./
with:
version: "master"
llvm-version: "latest"
logfile: "test/empty/compile_commands.json"
fetch_ubuntu-1804_12-llvm:
name: "Fetch: Ubuntu Linux 18.04 (LLVM 12.y)"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: ./
with:
version: "master"
llvm-version: 12
logfile: "test/empty/compile_commands.json"
# Test simple build and analysis configuration.
simple-analysis-tests:
strategy:
fail-fast: false
matrix:
logfile: ['', 'test/simple/compile_commands.json']
build-command: ['', 'cd test/simple; g++ -c main.cpp -o main.o']
analyze-output: ['', 'my-output-dir']
name: "Simple analysis: ${{ matrix.logfile && 'logfile' || 'no logfile' }}, ${{ matrix.build-command && 'build-command' || 'no build-command' }}, ${{ matrix.analyze-output && 'analyze-output' || 'no analyze-output'}}"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: test/fix_compile_json_paths.sh
- uses: ./
id: codechecker
# Allow continuing the build, we check "expected failure" for misconfiguration.
continue-on-error: ${{ (matrix.logfile != '') == (matrix.build-command != '') }}
with:
logfile: ${{ matrix.logfile }}
build-command: ${{ matrix.build-command }}
analyze-output: ${{ matrix.analyze-output }}
- name: "Check and reject job if previous test should have failed, but did not"
if: ${{ steps.codechecker.continue-on-error && steps.codechecker.outcome != 'failure' }}
run: |
echo "::error title=Step with expected failure passed::"
exit 1
analyze-cfg:
name: "Analyze: Custom configuration"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: test/fix_compile_json_paths.sh
- uses: ./
with:
config: 'test/codechecker.verbose.json'
logfile: 'test/simple/compile_commands.json'
analyze-ctu:
name: "Analyze: CTU shortcut"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: test/fix_compile_json_paths.sh
- uses: ./
id: codechecker
with:
logfile: 'test/ctu/compile_commands.json'
ctu: true
- name: "Reject test if previous step did not produce CTU finding"
run: cat ${{ steps.codechecker.outputs.result-log }} | grep "Dereference of null pointer"
fail-on-error:
name: "Parse: Fail the build on error"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: test/fix_compile_json_paths.sh
- uses: ./
id: codechecker
continue-on-error: true
with:
logfile: 'test/simple/compile_commands.json'
fail-build-if-reports: true
- name: "Reject test if previous step did not fail"
if: ${{ steps.codechecker.outcome != 'failure' }}
run: |
echo "::error title=fail-on-error test passed::Expected the 'parse' step to breka the build."
exit 1
parse-html:
name: "Parse: Generate and upload report HTML artefact"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: test/fix_compile_json_paths.sh
- uses: ./
id: codechecker
with:
logfile: 'test/simple/compile_commands.json'
- uses: actions/upload-artifact@v2
with:
name: "Parse HTML test results"
path: ${{ steps.codechecker.outputs.result-html-dir }}
store:
name: "Store: Authenticated local store of single result"
runs-on: ubuntu-20.04
env:
CODECHECKER_VERSION: '6.18.0'
steps:
- uses: actions/checkout@v2
# Need to do this manually because the server for this test has to have
# authentication on, with a known username and password.
- name: "Set up CodeChecker server"
run: |
set -x
sudo apt-get -y update
sudo apt-get -y install --no-install-recommends \
netcat \
wget
mkdir -pv ~/codechecker-server-data
chmod 1777 ~/codechecker-server-data
cp test/codechecker.server.json ~/codechecker-server-data/server_config.json
test/prepare-docker-server.sh
echo "::group::CodeChecker server configuration"
cd ~/codechecker-server-data
chown 950:950 server_config.json && chmod 0600 server_config.json
chown 950:950 root.user && chmod 0600 root.user
ls -alh
cat docker-compose.yml
cat root.user
cat server_config.json
echo "::endgroup::"
docker-compose up -d
wget -qO- http://raw.githubusercontent.com/eficode/wait-for/v2.1.3/wait-for | sh -s -- --timeout=30 http://0.0.0.0:8001/ -- echo "CodeChecker up"
docker ps -a
echo "::group::CodeChecker server initial log output"
docker logs codechecker-server
echo "::endgroup::"
- run: test/fix_compile_json_paths.sh
- uses: ./
id: codechecker
continue-on-error: true
with:
version: "v${{ env.CODECHECKER_VERSION }}"
logfile: 'test/simple/compile_commands.json'
store: true
store-url: 'http://0.0.0.0:8001/Default'
store-username: 'root'
store-password: 'root'
- name: "Test if server logged store action"
id: test
continue-on-error: true
run: docker logs codechecker-server | grep "stored results"
- name: "Teardown CodeChecker server"
run: |
set -x
echo "::group::CodeChecker server log output"
docker logs codechecker-server
echo "::endgroup::"
cd ~/codechecker-server-data
docker-compose down
docker ps -a
- name: "Fail the build if the test execution failed"
if: ${{ steps.test.outcome == 'failure' || steps.codechecker.outcome == 'failure' }}
run: exit 1