X-Git-Url: http://tinc-vpn.org/git/browse?a=blobdiff_plain;f=.github%2Fworkflows%2Ftest.yml;h=f9b39eb2822a001d1159f75e6f7149efc1406b08;hb=6049b67f1e1cf00da8e0e913b8adc81a7b16bb87;hp=27f364b002ac06668e22715874d18d3e767f0b45;hpb=b9a7444b9fa216d16d91f34d2e12f51fc4d60e46;p=tinc diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 27f364b0..f9b39eb2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,33 +65,25 @@ jobs: tar -C ~ --strip-components=1 --wildcards -xf ./shellcheck-*.tar.xz 'shellcheck-*/shellcheck' curl -o ~/shfmt -L "https://github.com/mvdan/sh/releases/download/v$SHFMT/shfmt_v${SHFMT}_linux_amd64" chmod 755 ~/shfmt ~/shellcheck - pip3 install --user compiledb + python3 -m venv /tmp/venv + . /tmp/venv/bin/activate + pip3 install black pylint mypy env: CLANG: 11 SHELLCHECK: 0.7.2 SHFMT: 3.3.0 - name: Install deps - run: sudo sh .ci/deps.sh - - - name: Run clang-tidy - run: sh .ci/tidy/run.sh - if: always() - - - name: Check code formatting - run: "! astyle --exclude=build -r --options=.astylerc --dry-run --formatted '*.c' '*.h' | grep '^Formatted'" - if: always() - - - name: Check scripts formatting - run: find -type f -regextype egrep -regex '.+\.(sh|sh\.in|test)$' -exec ~/shfmt -d -i 2 -s '{}' + - if: always() + run: sudo SKIP_OPENSSL3=1 sh .ci/deps.sh - - name: Run static analysis on scripts - run: find -type f -regextype egrep -regex '.+\.sh(\.in)?$' -exec shellcheck -x '{}' + + - name: Lint/typecheck/check formatting on C/shell/Python code + run: | + . /tmp/venv/bin/activate + PATH=$PATH:$HOME ./lint.py if: always() - - name: Run static analysis on tests - run: find -type f -name '*.test' -execdir shellcheck -x '{}' + + - name: Run clang-tidy + run: sh .ci/tidy/run.sh if: always() - name: Check warnings (gcc) @@ -340,9 +332,14 @@ jobs: strategy: fail-fast: false matrix: - arch: - - amd64 - - amd64_x86 + target: + - { build: amd64, host: amd64, test: test } + - { build: amd64, host: x86, test: test } + - { build: amd64, host: arm64, test: notest } + + env: + HOST_ARCH: ${{ matrix.target.host }} + BUILD_ARCH: ${{ matrix.target.build }} steps: - name: Install meson @@ -354,14 +351,14 @@ jobs: - name: Activate dev environment uses: ilammy/msvc-dev-cmd@v1 with: - arch: ${{ matrix.arch }} + arch: ${{ matrix.target.build == matrix.target.host && matrix.target.host || format('{0}_{1}', matrix.target.build, matrix.target.host) }} - name: Build (nolegacy) run: .ci\windows\build.cmd nolegacy - name: Test (nolegacy) run: .ci\windows\test.cmd nolegacy - if: always() + if: always() && matrix.target.test == 'test' - name: Build (OpenSSL) run: .ci\windows\build.cmd openssl @@ -369,4 +366,4 @@ jobs: - name: Test (OpenSSL) run: .ci\windows\test.cmd openssl - if: always() + if: always() && matrix.target.test == 'test'