2021-12-13 23:36:50 +08:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
2022-02-24 07:35:03 +08:00
|
|
|
# Cancel old PR builds when pushing new commits.
|
|
|
|
concurrency:
|
|
|
|
group: build-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-12-13 23:36:50 +08:00
|
|
|
jobs:
|
2022-02-14 18:26:59 +08:00
|
|
|
common:
|
|
|
|
uses: TokTok/ci-tools/.github/workflows/common-ci.yml@master
|
|
|
|
|
2022-01-14 21:03:32 +08:00
|
|
|
mypy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2022-01-14 21:03:32 +08:00
|
|
|
- name: Set up Python 3.9
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install mypy
|
|
|
|
run: pip install mypy
|
|
|
|
- name: Run mypy
|
|
|
|
run: |
|
2022-02-04 23:05:19 +08:00
|
|
|
(find . -name "*.py" -and -not -name "conanfile.py"; grep -lR '^#!.*python') \
|
|
|
|
| xargs -n1 -P8 mypy --strict
|
2022-01-14 21:03:32 +08:00
|
|
|
|
2022-03-05 08:57:20 +08:00
|
|
|
doxygen:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Docker Build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
file: other/docker/doxygen/Dockerfile
|
|
|
|
|
2022-02-18 04:22:12 +08:00
|
|
|
tokstyle:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Docker Build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
file: other/docker/tokstyle/Dockerfile
|
|
|
|
|
2022-04-04 06:30:48 +08:00
|
|
|
misra:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Docker Build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
file: other/docker/misra/Dockerfile
|
|
|
|
|
2022-03-05 08:57:20 +08:00
|
|
|
cimplefmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2022-03-05 08:57:20 +08:00
|
|
|
- name: Run cimplefmt
|
|
|
|
run: other/docker/cimplefmt/run -u $(find tox* -name "*.[ch]")
|
|
|
|
|
2021-12-13 23:36:50 +08:00
|
|
|
build-nacl:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-12-14 23:35:37 +08:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Docker Build
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
file: other/docker/autotools/Dockerfile
|
2021-12-20 09:39:24 +08:00
|
|
|
|
|
|
|
build-win32:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-20 09:39:24 +08:00
|
|
|
- name: Cross compilation
|
2022-01-10 09:17:46 +08:00
|
|
|
run: .github/scripts/cmake-win32 script
|
2021-12-20 09:39:24 +08:00
|
|
|
|
|
|
|
build-win64:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-20 09:39:24 +08:00
|
|
|
- name: Cross compilation
|
2022-01-10 09:17:46 +08:00
|
|
|
run: .github/scripts/cmake-win64 script
|
2021-12-21 00:57:11 +08:00
|
|
|
|
2021-12-23 23:44:48 +08:00
|
|
|
build-freebsd:
|
2021-12-21 00:57:11 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: toxchat/freebsd
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-21 00:57:11 +08:00
|
|
|
- name: Build on FreeBSD
|
2022-01-10 09:17:46 +08:00
|
|
|
run: .github/scripts/cmake-freebsd-stage2
|
2021-12-29 07:25:34 +08:00
|
|
|
|
|
|
|
build-macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-29 07:25:34 +08:00
|
|
|
- name: Build and test
|
2022-01-10 09:17:46 +08:00
|
|
|
run: .github/scripts/cmake-osx
|
2021-12-31 04:58:35 +08:00
|
|
|
|
2022-01-06 03:43:44 +08:00
|
|
|
coverage-linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2022-02-25 00:42:04 +08:00
|
|
|
- name: Build, test, and upload coverage
|
|
|
|
run: .github/scripts/coverage-linux
|
2022-01-06 03:43:44 +08:00
|
|
|
|
2021-12-31 04:58:35 +08:00
|
|
|
build-tcc:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-31 04:58:35 +08:00
|
|
|
- name: Install dependencies
|
|
|
|
run:
|
|
|
|
sudo apt-get install -y --no-install-recommends
|
|
|
|
tcc
|
|
|
|
libconfig-dev
|
|
|
|
libopus-dev
|
|
|
|
libsodium-dev
|
|
|
|
libvpx-dev
|
|
|
|
- name: Build with TCC
|
|
|
|
run:
|
|
|
|
tcc
|
2022-02-07 07:53:41 +08:00
|
|
|
-Dinline=static
|
2021-12-31 04:58:35 +08:00
|
|
|
-o send_message_test
|
|
|
|
-Wall -Werror
|
|
|
|
-bench -g
|
2022-01-26 03:25:36 +08:00
|
|
|
auto_tests/auto_test_support.c
|
2021-12-31 04:58:35 +08:00
|
|
|
auto_tests/send_message_test.c
|
|
|
|
testing/misc_tools.c
|
|
|
|
toxav/*.c
|
|
|
|
toxcore/*.c
|
2022-02-07 00:41:31 +08:00
|
|
|
toxcore/*/*.c
|
2021-12-31 04:58:35 +08:00
|
|
|
toxencryptsave/*.c
|
2022-03-25 02:16:45 +08:00
|
|
|
third_party/cmp/*.c
|
|
|
|
$(pkg-config --cflags --libs libsodium opus vpx)
|
2021-12-31 04:58:35 +08:00
|
|
|
- name: Run the test
|
|
|
|
run: "./send_message_test | grep 'tox clients connected'"
|
2022-01-18 04:43:38 +08:00
|
|
|
- name: Build amalgamation file with TCC
|
|
|
|
run:
|
|
|
|
other/make_single_file
|
2022-01-26 03:25:36 +08:00
|
|
|
auto_tests/auto_test_support.c
|
2022-01-18 04:43:38 +08:00
|
|
|
auto_tests/send_message_test.c
|
|
|
|
testing/misc_tools.c |
|
|
|
|
tcc -
|
|
|
|
-o send_message_test
|
|
|
|
-Wall -Werror
|
|
|
|
-bench -g
|
2022-03-25 02:16:45 +08:00
|
|
|
$(pkg-config --cflags --libs libsodium opus vpx)
|
2022-01-18 04:43:38 +08:00
|
|
|
- name: Run the test again
|
|
|
|
run: "./send_message_test | grep 'tox clients connected'"
|
2021-12-31 04:58:35 +08:00
|
|
|
|
|
|
|
build-compcert:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: toxchat/compcert
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-31 04:58:35 +08:00
|
|
|
- name: Build with CompCert
|
|
|
|
run:
|
|
|
|
ccomp
|
|
|
|
-o send_message_test
|
|
|
|
-Wall -Werror
|
|
|
|
-Wno-c11-extensions
|
|
|
|
-Wno-unknown-pragmas
|
|
|
|
-Wno-unused-variable
|
|
|
|
-fstruct-passing -fno-unprototyped -g
|
2022-01-26 03:25:36 +08:00
|
|
|
auto_tests/auto_test_support.c
|
2021-12-31 04:58:35 +08:00
|
|
|
auto_tests/send_message_test.c
|
|
|
|
testing/misc_tools.c
|
|
|
|
toxav/*.c
|
|
|
|
toxcore/*.c
|
2022-02-07 00:41:31 +08:00
|
|
|
toxcore/*/*.c
|
2021-12-31 04:58:35 +08:00
|
|
|
toxencryptsave/*.c
|
2022-03-25 02:16:45 +08:00
|
|
|
third_party/cmp/*.c
|
2022-02-07 07:53:41 +08:00
|
|
|
-D__COMPCERT__ -DDISABLE_VLA -Dinline=
|
2022-03-25 02:16:45 +08:00
|
|
|
-lpthread $(pkg-config --cflags --libs libsodium opus vpx)
|
2021-12-31 04:58:35 +08:00
|
|
|
- name: Run the test
|
|
|
|
run: "./send_message_test | grep 'tox clients connected'"
|
2022-01-28 07:38:58 +08:00
|
|
|
|
2022-02-11 06:30:44 +08:00
|
|
|
build-android:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2022-02-11 06:30:44 +08:00
|
|
|
- run: .github/scripts/cmake-android armeabi-v7a
|
|
|
|
- run: .github/scripts/cmake-android arm64-v8a
|
|
|
|
- run: .github/scripts/cmake-android x86
|
|
|
|
- run: .github/scripts/cmake-android x86_64
|