Bazel module support #327
Workflow file for this run
This file contains hidden or 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
| # This is a basic workflow to help you get started with Actions | |
| name: cpp2sky test | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| format: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Checkout clang-format | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| repository: Sarcasm/run-clang-format | |
| path: run-clang-format | |
| - name: Run clang-format | |
| run: find ./ -iname "*.h" -o -iname "*.cc" | xargs ./run-clang-format/run-clang-format.py | |
| unit-test: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - run: | | |
| echo "/opt/llvm/bin" >> $GITHUB_PATH | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| # - name: Run bazel test with GCC c++11 | |
| # run: | | |
| # bazel test --test_output=all --cxxopt=-std=c++0x //... | |
| - name: Run bazel test with GCC c++17 | |
| run: | | |
| bazel test --test_output=all --cxxopt=-std=c++17 //... | |
| # - name: Run bazel test with CLANG c++11 | |
| # run: | | |
| # bazel test --test_output=all -c dbg --config=clang --cxxopt=-std=c++0x //... | |
| - name: Run bazel test with CLANG c++17 | |
| run: | | |
| bazel test --test_output=all -c opt --config=clang --cxxopt=-std=c++17 //... | |
| - name: Checkout skywalking-data-collect-protocol | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| repository: apache/skywalking-data-collect-protocol | |
| ref: fb3fb005650e2489164978b7804117c7ade1529a | |
| path: 3rdparty/skywalking-data-collect-protocol | |
| - name: Checkout grpc | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| repository: grpc/grpc | |
| ref: v1.74.1 | |
| path: grpc | |
| submodules: true | |
| - name: Install cmake | |
| run: sudo apt update && sudo apt -y install cmake | |
| - name: Build grpc | |
| run: | | |
| cmake -S ./grpc -B ./grpc/build | |
| cmake --build ./grpc/build --parallel 8 --target install | |
| - name: Build main project | |
| run: | | |
| cmake -S . -B ./build | |
| cmake --build ./build | |
| - name: Install lcov and genhtml and link llvm | |
| run: | | |
| sudo apt update | |
| sudo apt -y install lcov | |
| sudo ln -s /usr/bin/llvm-profdata-11 /usr/bin/llvm-profdata | |
| sudo ln -s /usr/bin/llvm-cov-11 /usr/bin/llvm-cov | |
| - name: Run coverage test | |
| run: | | |
| ./coverage.sh | |
| e2e-test: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: Prepare service container | |
| run: | | |
| docker compose -f test/e2e/docker/docker-compose.yml up -d | |
| - name: Run e2e | |
| run: | | |
| sleep 10 | |
| pip3 install --upgrade pip | |
| pip3 install setuptools | |
| pip3 install -r test/e2e/requirements.txt | |
| python3 test/e2e/main.py --expected_file=test/e2e/data/all_expected.yaml --max_retry_times=3 |