-
Notifications
You must be signed in to change notification settings - Fork 35
56 lines (48 loc) · 1.58 KB
/
glt-v6d-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: GLT V6D CI
on:
push:
branches: [ main ]
paths-ignore:
- 'benchmarks/**'
- 'docs/**'
- 'examples/**'
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'benchmarks/**'
- 'docs/**'
- 'examples/**'
- '**.md'
env:
IMAGE: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-dev:latest
JOBNAME: glt-v6d-ci-${{ github.run_id }}
DESTDIR: /home/graphscope/graphlearn-for-pytorch
jobs:
run-glt-v6d-unittests:
runs-on: self-hosted
if: ${{ github.repository == 'alibaba/graphlearn-for-pytorch' }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Update submodules
working-directory: ${{github.workspace}}
run: |
git submodule update --init
- name: Launch CI container
working-directory: ${{github.workspace}}
run: |
WITH_VINEYARD=ON WITH_CUDA=OFF MOUNT_VOLUME=FALSE bash scripts/launch_container.sh ${IMAGE} ${JOBNAME} ${DESTDIR} && \
docker exec ${JOBNAME} sudo chown -R graphscope ${DESTDIR} && \
docker exec ${JOBNAME} sudo rm -rf ${DESTDIR}/dist ${DESTDIR}/build ${DESTDIR}/built
- name: Build wheel
run: |
docker exec ${JOBNAME} bash ${DESTDIR}/scripts/build_wheel.sh
- name: Run python unit tests
run: |
docker exec ${JOBNAME} python3 ${DESTDIR}/test/python/test_vineyard.py
- name: Remove CI container
if: always()
working-directory: ${{github.workspace}}
run: |
bash scripts/remove_container.sh ${JOBNAME}