This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
drop unsupported platforms, fix gcc and clang latest #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cmake | |
env: | |
FORCE_COLOR: 1 | |
CLICOLOR_FORCE: 1 | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
# Check different architectures (qemu, ubuntu:gcc) | |
# linux_archs: | |
# runs-on: ubuntu-latest | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# arch: [i386, arm32v7, arm64v8, ppc64le, s390x, riscv64] | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v2 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v2 | |
# - name: CMake and CTest | |
# run: | | |
# docker run -v "$PWD:/pyyjson" ${{ matrix.arch }}/ubuntu bash -e -c ' | |
# FORCE_COLOR=1 | |
# CLICOLOR_FORCE=1 | |
# apt-get update | |
# apt-get install -y gcc g++ cmake python3 python3-pip | |
# python3 -m pip install . | |
# ' | |
# Check latest clang | |
linux_clang_latest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y valgrind | |
sudo apt-get install -y lsb-release software-properties-common gnupg | |
sudo apt-get install -y python3 python3-pip | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x ./llvm.sh | |
sudo ./llvm.sh | |
CLANG_PATH=$(ls /usr/bin/clang* | grep "clang-[0-9]" | sort --version-sort | tail -1) | |
CLANGPP_PATH=$(ls /usr/bin/clang* | grep "clang++-[0-9]" | sort --version-sort | tail -1) | |
echo "Latest Clang: $CLANG_PATH" | |
echo "Latest Clang++: $CLANGPP_PATH" | |
echo "CC=$CLANG_PATH" >> $GITHUB_ENV | |
echo "CXX=$CLANGPP_PATH" >> $GITHUB_ENV | |
- name: Build | |
shell: bash | |
run: | | |
python3 -m pip install . | |
# - name: Build | |
# shell: bash | |
# working-directory: ${{runner.workspace}}/build | |
# run: cmake --build . --config Release | |
# - name: Test | |
# shell: bash | |
# working-directory: ${{runner.workspace}}/build | |
# run: ctest -C Release --output-on-failure | |
# Check latest gcc | |
linux_gcc_latest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install | |
run: | | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y | |
sudo apt-get update | |
GCC_VERSION=$(apt search ^gcc-[0-9]*$ 2>/dev/null | grep -Po 'gcc-(\d+)(?=/)' | sort --version-sort | tail -1) | |
GPP_VERSION=$(apt search ^g\+\+-[0-9]*$ 2>/dev/null | grep -Po 'g\+\+-(\d+)(?=/)' | sort --version-sort | tail -1) | |
echo "Latest GCC: $GCC_VERSION" | |
echo "Latest G++: $GPP_VERSION" | |
sudo apt-get install -y $GCC_VERSION $GPP_VERSION | |
sudo apt-get install -y valgrind | |
sudo apt-get install -y python3 python3-pip | |
echo "CC=$GCC_VERSION" >> $GITHUB_ENV | |
echo "CXX=$GPP_VERSION" >> $GITHUB_ENV | |
- name: Build | |
shell: bash | |
run: | | |
python3 -m pip install . | |
# - name: Test | |
# shell: bash | |
# working-directory: ${{runner.workspace}}/build | |
# run: ctest -C Release --output-on-failure | |
# Check old gcc 32-bit | |
# linux_gcc5_i386: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v2 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v2 | |
# - name: CMake and CTest | |
# run: | | |
# docker run -v "$PWD:/pyyjson" i386/ubuntu:16.04 bash -e -c ' | |
# FORCE_COLOR=1 | |
# CLICOLOR_FORCE=1 | |
# apt-get update | |
# apt-get install -y gcc g++ cmake python3 python3-pip | |
# python3 -m pip install ./pyyjson | |
# ' | |
# Check old gcc 64-bit | |
# linux_gcc4: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Prepare | |
# shell: bash | |
# run: | | |
# sudo apt-get update | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/g++-4.8_4.8.5-4ubuntu8_amd64.deb | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/libstdc++-4.8-dev_4.8.5-4ubuntu8_amd64.deb | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/gcc-4.8-base_4.8.5-4ubuntu8_amd64.deb | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/gcc-4.8_4.8.5-4ubuntu8_amd64.deb | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/libgcc-4.8-dev_4.8.5-4ubuntu8_amd64.deb | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/cpp-4.8_4.8.5-4ubuntu8_amd64.deb | |
# wget http://mirrors.kernel.org/ubuntu/pool/universe/g/gcc-4.8/libasan0_4.8.5-4ubuntu8_amd64.deb | |
# sudo apt install ./gcc-4.8_4.8.5-4ubuntu8_amd64.deb \ | |
# ./gcc-4.8-base_4.8.5-4ubuntu8_amd64.deb \ | |
# ./libstdc++-4.8-dev_4.8.5-4ubuntu8_amd64.deb \ | |
# ./cpp-4.8_4.8.5-4ubuntu8_amd64.deb \ | |
# ./libgcc-4.8-dev_4.8.5-4ubuntu8_amd64.deb \ | |
# ./libasan0_4.8.5-4ubuntu8_amd64.deb \ | |
# ./g++-4.8_4.8.5-4ubuntu8_amd64.deb | |
# - name: Build and Test | |
# run: | | |
# mkdir build | |
# cd build | |
# cmake .. -DCMAKE_C_COMPILER=gcc-4.8 -DCMAKE_CXX_COMPILER=g++-4.8 | |
# cmake --build . --config Release | |
# Check tinycc | |
# linux_tinycc: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Prepare | |
# shell: bash | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install -y tcc | |
# - name: Build and Test | |
# run: | | |
# mkdir build | |
# cd build | |
# cmake .. -DCMAKE_C_COMPILER=tcc -DYYJSON_BUILD_TESTS=ON | |
# cmake --build . --config Release | |
# ctest -C Release --output-on-failure | |
# Check macOS clang | |
macos_clang: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/checkout@v3 | |
- name: Build and Test | |
run: | | |
pip install . | |
# Check Windows MSVC | |
windows_msvc: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/checkout@v3 | |
- name: Build and Test | |
run: | | |
python -m pip install . | |
# Fuzzing with LLVM libFuzzer for a short time | |
# fuzzing: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Fuzzing | |
# run: | | |
# mkdir build | |
# cd build | |
# cmake .. -DYYJSON_BUILD_FUZZER=ON -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ | |
# cmake --build . --config Release | |
# ctest -C Release --output-on-failure | |
# Upload coverage data to Codecov | |
# codecov: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Prepare | |
# shell: bash | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install -y llvm | |
# - name: CodeCov | |
# shell: bash | |
# run: | | |
# mkdir build | |
# cd build | |
# export LLVM_PROFILE_FILE=cov/profile-%p.profraw | |
# cmake .. -DCMAKE_BUILD_TYPE=Debug -DYYJSON_BUILD_TESTS=ON -DYYJSON_ENABLE_COVERAGE=ON \ | |
# -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ | |
# cmake --build . --config Debug | |
# ctest | |
# ctest_files=$(grep -o "test_\w\+ " CTestTestfile.cmake | uniq | tr '\n' ' ') | |
# ctest_files=$(echo $ctest_files | sed 's/ $//' | sed "s/ / -object /g") | |
# llvm-profdata merge -sparse cov/profile-*.profraw -o coverage.profdata | |
# llvm-cov show $ctest_files -instr-profile=coverage.profdata > coverage.txt | |
# bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" |