fix(interactive): Implement HttpIrMetaReader
to Get Meta Data From Remote Http Service
#3228
Workflow file for this run
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: GraphScope CI on Local (Dummy) | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**' | |
- '!.github/workflows/local-ci.yml' | |
- '!Makefile' | |
- '!analytical_engine/**' | |
- '!charts/**' | |
- '!coordinator/**' | |
- '!interactive_engine/**' | |
- '!k8s/**' | |
- '!learning_engine/**' | |
- '!proto/**' | |
- '!python/**' | |
- '**.md' | |
- '**.rst' | |
concurrency: | |
group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
GS_IMAGE: registry.cn-hongkong.aliyuncs.com/graphscope/graphscope | |
jobs: | |
# JOB to run change detection | |
changes: | |
runs-on: ubuntu-20.04 | |
# Set job outputs to values from filter step | |
outputs: | |
gae-python: ${{ steps.filter.outputs.gae-python }} | |
networkx: ${{ steps.filter.outputs.networkx }} | |
gie-function-test: ${{ steps.filter.outputs.gie-function-test }} | |
steps: | |
# For push it's necessary to checkout the code | |
- uses: actions/checkout@v3 | |
# For pull requests it's not necessary to checkout the code | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
base: main # Change detection against merge-base with main before push | |
filters: | | |
gae-python: | |
- 'proto/**' | |
- 'analytical_engine/**' | |
- 'python/graphscope/analytical/**' | |
- 'python/graphscope/client/**' | |
- 'python/graphscope/dataset/**' | |
- 'python/graphscope/deploy/**' | |
- 'python/graphscope/framework/**' | |
- 'python/graphscope/tests/unittest/**' | |
- 'coordinator/gscoordinator/**' | |
- '.github/workflows/ci.yml' | |
networkx: | |
- 'analytical_engine/apps/**' | |
- 'analytical_engine/frame/**' | |
- 'analytical_engine/core/**' | |
- 'python/graphscope/nx/**' | |
gie-function-test: | |
- 'interactive_engine/**' | |
- 'python/graphscope/interactive/**' | |
- '.github/workflows/ci.yml' | |
build-wheels: | |
runs-on: ubuntu-20.04 | |
if: ${{ github.repository == 'alibaba/GraphScope' }} | |
steps: | |
- run: 'echo "No action required" ' | |
mini-test: | |
runs-on: ubuntu-20.04 | |
if: ${{ github.repository == 'alibaba/GraphScope' }} | |
needs: [build-wheels] | |
steps: | |
- run: 'echo "No action required" ' | |
python-unittest: | |
runs-on: ubuntu-20.04 | |
needs: [build-wheels, changes] | |
strategy: | |
matrix: | |
deployment: ["standalone", "distributed"] | |
steps: | |
- run: 'echo "No action required" ' | |
networkx-basic-test: | |
runs-on: ubuntu-20.04 | |
needs: [build-wheels, changes] | |
strategy: | |
matrix: | |
deployment: ["standalone", "distributed"] | |
steps: | |
- run: 'echo "No action required" ' | |
networkx-algo-and-generator-test: | |
runs-on: ubuntu-20.04 | |
needs: [build-wheels, changes] | |
strategy: | |
matrix: | |
deployment: ["standalone", "distributed"] | |
steps: | |
- run: 'echo "No action required" ' |