2020-08-22 23:04:57 +02:00
|
|
|
name: 📊 Static Checks
|
2020-07-13 09:34:34 +02:00
|
|
|
on: [push, pull_request]
|
|
|
|
|
2021-08-24 20:49:06 +02:00
|
|
|
concurrency:
|
2021-08-25 15:04:05 +02:00
|
|
|
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-static
|
2021-08-24 20:49:06 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
jobs:
|
2020-07-15 00:37:02 +02:00
|
|
|
static-checks:
|
|
|
|
name: Static Checks (clang-format, black format, file format, documentation checks)
|
2020-07-13 09:34:34 +02:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-11-19 05:59:12 +01:00
|
|
|
# Azure repositories are not reliable, we need to prevent Azure giving us packages.
|
2020-08-11 17:14:47 +02:00
|
|
|
- name: Make apt sources.list use the default Ubuntu repositories
|
|
|
|
run: |
|
|
|
|
sudo rm -f /etc/apt/sources.list.d/*
|
|
|
|
sudo cp -f misc/ci/sources.list /etc/apt/sources.list
|
2021-10-28 16:01:30 +02:00
|
|
|
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
|
|
|
|
sudo apt-add-repository "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-13 main"
|
2020-08-11 17:14:47 +02:00
|
|
|
sudo apt-get update
|
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2022-02-14 14:18:53 +01:00
|
|
|
sudo apt-get install -qq dos2unix recode clang-format-13 libxml2-utils
|
2021-01-12 16:57:55 +01:00
|
|
|
sudo update-alternatives --remove-all clang-format
|
2021-10-28 16:01:30 +02:00
|
|
|
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-13 100
|
2022-04-05 17:43:12 +02:00
|
|
|
sudo pip3 install black==22.3.0 pygments
|
2020-07-13 09:34:34 +02:00
|
|
|
|
|
|
|
- name: File formatting checks (file_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/file_format.sh
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
- name: Header guards formatting checks (header_guards.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/header_guards.sh
|
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
- name: Python style checks via black (black_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/black_format.sh
|
|
|
|
|
2021-02-22 06:10:16 +01:00
|
|
|
- name: JavaScript style and documentation checks via ESLint and JSDoc
|
2020-11-19 05:59:12 +01:00
|
|
|
run: |
|
|
|
|
cd platform/javascript
|
|
|
|
npm ci
|
|
|
|
npm run lint
|
2021-02-22 06:10:16 +01:00
|
|
|
npm run docs -- -d dry-run
|
2020-11-19 05:59:12 +01:00
|
|
|
|
2022-02-14 14:18:53 +01:00
|
|
|
- name: Class reference schema checks
|
|
|
|
run: |
|
|
|
|
xmllint --noout --schema doc/class.xsd doc/classes/*.xml modules/*/doc_classes/*.xml
|
|
|
|
|
2020-07-13 09:34:34 +02:00
|
|
|
- name: Documentation checks
|
|
|
|
run: |
|
2022-06-11 00:16:05 +02:00
|
|
|
doc/tools/make_rst.py --dry-run --color doc/classes modules
|
2022-06-30 04:36:40 +02:00
|
|
|
|
|
|
|
- name: Style checks via clang-format (clang_format.sh)
|
|
|
|
run: |
|
|
|
|
bash ./misc/scripts/clang_format.sh
|