Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI-cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Cygwin
uses: cygwin/cygwin-install-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI-mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-unixish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
image: ${{ matrix.image }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install missing software on CentOS 7
if: matrix.image == 'centos:7'
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
image: ${{ matrix.image }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install missing software on CentOS 7
if: matrix.image == 'centos:7'
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/CI-unixish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
CCACHE_SLOPPINESS: pch_defines,time_macros

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# coreutils contains "g++" (default is "c++") and "nproc"
- name: Install missing software on macos
Expand All @@ -207,7 +207,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install missing software on ubuntu
if: contains(matrix.os, 'ubuntu')
Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Build Fuzzer
run: |
Expand All @@ -307,7 +307,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -434,7 +434,7 @@ jobs:
runs-on: ubuntu-22.04 # run on the latest image only

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Visual Studio environment
uses: ilammy/msvc-dev-cmd@v1
Expand Down Expand Up @@ -85,10 +85,10 @@ jobs:
PCRE_VERSION: 8.45

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'

Expand All @@ -99,7 +99,7 @@ jobs:

- name: Cache PCRE
id: cache-pcre
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
externals\pcre.h
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
ASAN_OPTIONS: detect_stack_use_after_return=1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/buildman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
convert_via_pandoc:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- run: |
mkdir output
Expand All @@ -22,7 +22,7 @@ jobs:
with:
args: --output=output/manual.pdf man/manual.md

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: output
path: output
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
QT_VERSION: 5.15.2

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install missing software
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install missing software on ubuntu
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
lcov --extract lcov_tmp.info "$(pwd)/*" --output-file lcov.info
genhtml lcov.info -o coverage_report --frame --legend --demangle-cpp

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Coverage results
path: coverage_report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Cache uncrustify
uses: actions/cache@v2
uses: actions/cache@v3
id: cache-uncrustify
with:
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/iwyu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
image: "debian:unstable" # use latest debian image to get latest include-what-you-get

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# TODO: the necessary packages are excessive - mostly because of Qt - use a pre-built image
- name: Install missing software
Expand Down Expand Up @@ -52,12 +52,12 @@ jobs:
# do not fail for now so the output is being saved
iwyu_tool -p cmake.output -j $(nproc) -- -w > iwyu.log || true

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Qt Mappings
path: ./qt5.imp

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Logs
path: ./*.log
8 changes: 4 additions & 4 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:
QT_VERSION: 5.15.2

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Visual Studio environment
uses: ilammy/msvc-dev-cmd@v1

- name: Cache PCRE
id: cache-pcre
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
externals\pcre.h
Expand Down Expand Up @@ -128,12 +128,12 @@ jobs:
echo ProductVersion="%PRODUCTVER%" || exit /b !errorlevel!
msbuild -m cppcheck.wixproj -p:Platform=x64,ProductVersion=%PRODUCTVER%.${{ github.run_number }} || exit /b !errorlevel!

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: installer
path: win_installer/Build/

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: deploy
path: win_installer\files
10 changes: 5 additions & 5 deletions .github/workflows/scriptcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ github.workflow }}-${{ runner.os }}

- name: Cache Cppcheck
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: cppcheck
key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }}
Expand All @@ -44,16 +44,16 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Restore Cppcheck
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: cppcheck
key: ${{ runner.os }}-scriptcheck-cppcheck-${{ github.sha }}

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/selfcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
QT_VERSION: 5.15.2

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install missing software
run: |
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
env:
DISABLE_VALUEFLOW: 1

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Callgrind Output
path: ./callgrind.*
4 changes: 2 additions & 2 deletions .github/workflows/tsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
TSAN_OPTIONS: halt_on_error=1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
valgrind --error-limit=yes --leak-check=full --num-callers=50 --show-reachable=yes --track-origins=yes --suppressions=valgrind/testrunner.supp --gen-suppressions=all --log-fd=9 --error-exitcode=42 ./testrunner TestGarbage TestOther TestSimplifyTemplate 9>memcheck.log
cat memcheck.log

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Logs
path: ./*.log