-
Notifications
You must be signed in to change notification settings - Fork 447
39 lines (34 loc) · 1.08 KB
/
gss-dummy.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
name: GraphScope Store CI (Dummy)
on:
pull_request:
branches:
- main
paths:
- '**'
- '!proto/**'
- '!interactive_engine/**'
- '!python/graphscope/client/**'
- '!charts/graphscope-store/**'
- '!.github/workflows/gss.yml'
- 'interactive_engine/**.md'
- 'charts/graphscope-store/**.md'
concurrency:
group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
env:
GSS_IMAGE: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope-store
jobs:
gremlin-test:
# Require the host is able to run docker without sudo and
# can `ssh localhost` without password, which may need to
# be configured manually when a new self-hosted runner is added.
runs-on: ubuntu-20.04
if: ${{ github.repository == 'alibaba/GraphScope' }}
steps:
- run: 'echo "No action required" '
helm-test:
runs-on: ubuntu-20.04
if: ${{ github.repository == 'alibaba/GraphScope' }}
needs: [gremlin-test]
steps:
- run: 'echo "No action required" '