Skip to content

Commit

Permalink
fix ci problem
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Jun 18, 2024
1 parent 29a0de4 commit a5ea0e0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-graphscope-dev-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:
branches:
- main
paths:
- 'python/graphscope/gsctl/**'
- 'python/graphscope/gsctl/scripts/**'

concurrency:
group: ${{ github.repository }}-${{ github.event.number || github.head_ref || github.sha }}-${{ github.workflow }}
Expand All @@ -45,7 +45,7 @@ env:
jobs:
build-wheel-image-x86-64:
runs-on: ubuntu-20.04
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_wheel == 'true') || (github.pull_request == 'pull_request')
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_wheel == 'true') || (github.event_name == 'pull_request')

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
build-wheel-image-aarch64:
runs-on: [self-hosted, Linux, ARM64]
# if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_wheel == 'true') || (github.pull_request == 'pull_request')
# if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_wheel == 'true') || (github.event_name == 'pull_request')
if: false

steps:
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
build-graphscope-dev-image-x86-64:
runs-on: ubuntu-20.04
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_graphscope_dev == 'true') || (github.pull_request == 'pull_request')
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_graphscope_dev == 'true') || (github.event_name == 'pull_request')

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
build-graphscope-dev-image-aarch64:
runs-on: [self-hosted, Linux, ARM64]
# if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_graphscope_dev == 'true') || (github.pull_request == 'pull_request')
# if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_graphscope_dev == 'true') || (github.event_name == 'pull_request')
if: false

steps:
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
build-vineyard-dev-image-x86-64:
runs-on: ubuntu-20.04
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_vineyard_dev == 'true') || (github.pull_request == 'pull_request')
if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_vineyard_dev == 'true') || (github.event_name == 'pull_request')

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
build-vineyard-dev-image-aarch64:
runs-on: [self-hosted, Linux, ARM64]
# if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_vineyard_dev == 'true') || (github.pull_request == 'pull_request')
# if: (github.event_name == 'workflow_dispatch' && github.event.inputs.build_vineyard_dev == 'true') || (github.event_name == 'pull_request')
if: false

steps:
Expand Down

0 comments on commit a5ea0e0

Please sign in to comment.