Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .github/workflows/build-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ jobs:
build_linux_x86_64:
needs: prepare
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
runs-on: [self-hosted, daily, X64]
# runs-on: [self-hosted, daily, X64]
runs-on: ubuntu-22.04
container:
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-x86_64
steps:
Expand Down Expand Up @@ -157,7 +158,8 @@ jobs:
build_linux_arm64:
needs: prepare
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
runs-on: [self-hosted, daily, ARM64]
# runs-on: [self-hosted, daily, ARM64]
runs-on: ubuntu-22.04-arm
container:
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-manylinux:v0.1.2-arm64
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
# those from forks). Fork PRs are intentionally included to avoid the
# GitHub-hosted runner queue. Other repositories (e.g. user forks running
# this workflow on their own branches) fall back to ubuntu-22.04.
runs-on: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted"]') || 'ubuntu-22.04' }}
# runs-on: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted"]') || 'ubuntu-22.04' }}
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ concurrency:

jobs:
triage:
runs-on: [self-hosted, Linux, X64]
# runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
if: github.event.issue.state == 'open'
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ldbc-nightly-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ concurrency:
jobs:
benchmark:
name: Build, Load, Serve and Benchmark
if: github.repository == 'alibaba/neug' && (github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main')
# if: github.repository == 'alibaba/neug' && (github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/main')
if: false
runs-on: [self-hosted, ldbc-benchmark]
timeout-minutes: 480
steps:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/neug-extension-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
# Job 1: Build NeuG with extensions
# ============================================================
extension_tests_default:
runs-on: [self-hosted, daily, linux]
# runs-on: [self-hosted, daily, linux]
runs-on: ubuntu-22.04
container:
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
steps:
Expand Down Expand Up @@ -127,7 +128,8 @@ jobs:
NEUG_RUN_EXTENSION_TESTS=true python3 -m pytest -sv tests/test_export.py -k "httpfs"

extension_tests_wheel_linux_x86_64:
runs-on: [self-hosted, daily, linux, x64]
# runs-on: [self-hosted, daily, linux, x64]
runs-on: ubuntu-22.04
steps:
- name: checkout
id: checkout
Expand Down Expand Up @@ -205,7 +207,8 @@ jobs:
NEUG_RUN_EXTENSION_TESTS=1 python3 tools/python_bind/example/complex_test.py

extension_tests_wheel_linux_arm64:
runs-on: [self-hosted, daily, linux, arm64]
# runs-on: [self-hosted, daily, linux, arm64]
runs-on: ubuntu-22.04-arm
steps:
- name: checkout
id: checkout
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/neug-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,11 @@ jobs:
matrix:
include:
- arch: x86_64
runner: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "daily", "linux", "x64"]') || 'ubuntu-22.04' }}
# runner: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "daily", "linux", "x64"]') || 'ubuntu-22.04' }}
runner: ubuntu-22.04
- arch: arm64
runner: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "daily", "linux", "arm64"]') || 'ubuntu-22.04-arm' }}
# runner: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "daily", "linux", "arm64"]') || 'ubuntu-22.04-arm' }}
runner: ubuntu-22.04-arm
runs-on: ${{ matrix.runner }}
container:
image: neug-registry.cn-hongkong.cr.aliyuncs.com/neug/neug-dev:v0.1.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-completeness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ permissions:

jobs:
pr-completeness:
runs-on: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "Linux", "X64"]') || 'ubuntu-latest' }}
# runs-on: ${{ github.repository == 'alibaba/neug' && fromJSON('["self-hosted", "Linux", "X64"]') || 'ubuntu-latest' }}
runs-on: ubuntu-latest
steps:
- name: Check PR completeness
env:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/wheels-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ jobs:
build_wheels_linux_x86_64:
needs:
- determine_python_versions
runs-on: [self-hosted, daily, linux, x64]
# runs-on: [self-hosted, daily, linux, x64]
runs-on: ubuntu-22.04
if: ${{
(
inputs.mode == 'release' &&
Expand Down Expand Up @@ -242,7 +243,8 @@ jobs:
build_wheels_linux_arm64:
needs:
- determine_python_versions
runs-on: [self-hosted, daily, linux, arm64]
# runs-on: [self-hosted, daily, linux, arm64]
runs-on: ubuntu-22.04-arm
if: ${{
(
inputs.mode == 'release' &&
Expand Down
Loading