Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configure CI workflow for Ubuntu 20.04 LTS #1991

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions .github/workflows/ci-ubuntu-20.04-lts-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: CI-Ubuntu-20.04-LTS

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'

jobs:
gcc-rust-build-test:
name: gcc & rust build & test
runs-on: ubuntu-20.04
env:
# Share build cache when building rust API and the example project
CARGO_TARGET_DIR: ${{ github.workspace }}/target
CARGO_BUILD_JOBS: 32
CC: gcc
CXX: g++
steps:
- uses: actions/checkout@v3

- name: Ensure Python dependencies
run: |
pip install torch~=1.13 --extra-index-url https://download.pytorch.org/whl/cpu &&\
pip install --user -r tools/python_api/requirements_dev.txt -f https://data.pyg.org/whl/torch-1.13.0+cpu.html

- name: Ensure Node.js dependencies
run: npm install --include=dev
working-directory: tools/nodejs_api

- name: Test with coverage
run: CC=gcc CXX=g++ make lcov NUM_THREADS=32
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GitHub-hosted machines have much fewer cores, please check this or use $(nproc) to get core counts dynamically.


- name: Python test
run: CC=gcc CXX=g++ make pytest NUM_THREADS=32

- name: Node.js test
run: CC=gcc CXX=g++ make nodejstest NUM_THREADS=32

- name: Java test
run: CC=gcc CXX=g++ make javatest NUM_THREADS=32

- name: Generate coverage report
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You don't need to generate coverage report

run: |
lcov -c -d ./ --no-external -o cover.info &&\
lcov --remove cover.info $(< .github/workflows/lcov_exclude) -o cover.info

- name: C Example
working-directory: examples/c
run: |
mkdir build -p
cd build
CC=gcc CXX=g++ cmake ..
cmake --build .

- name: C++ Example
working-directory: examples/cpp
run: |
mkdir build -p
cd build
CC=gcc CXX=g++ cmake ..
cmake --build .

- name: Rust test
working-directory: tools/rust_api
run: |
cargo update -p half@2.3.1 --precise '2.2.1'
cargo update -p time --precise '0.3.23'
cargo test --features arrow -- --test-threads=1

- name: Rust example
working-directory: examples/rust
run: cargo build
Loading