Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/build_test_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ permissions:

jobs:
build_wheels_linux_x64:
name: Build wheels on self-hosted manylinux_2_28_x64 for TestPyPi
runs-on: linux_x64
name: Build wheels on GitHub-hosted manylinux_2_28_x64 for TestPyPi
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down Expand Up @@ -56,8 +56,8 @@ jobs:
shell: bash

build_wheels_linux_arm64:
name: Build wheels on self-hosted manylinux_2_28_arm64 for TestPyPi
runs-on: linux_arm64
name: Build wheels on GitHub-hosted manylinux_2_28_arm64 for TestPyPi
runs-on: ubuntu-24.04-arm

steps:
- name: Checkout code
Expand Down Expand Up @@ -101,4 +101,4 @@ jobs:
pip install --index-url https://test.pypi.org/simple/ zvec
# Run a simple smoke test
python -c "import zvec; print('Import OK:', zvec.__version__)"
shell: bash
shell: bash
10 changes: 5 additions & 5 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ permissions:

jobs:
build_wheels_linux_x64:
name: Build wheels on self-hosted manylinux_2_28_x64
runs-on: linux_x64
name: Build wheels on GitHub-hosted manylinux_2_28_x64
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down Expand Up @@ -58,8 +58,8 @@ jobs:
shell: bash

build_wheels_linux_arm64:
name: Build wheels on self-hosted manylinux_2_28_arm64
runs-on: linux_arm64
name: Build wheels on GitHub-hosted manylinux_2_28_arm64
runs-on: ubuntu-24.04-arm

steps:
- name: Checkout code
Expand Down Expand Up @@ -105,4 +105,4 @@ jobs:
pip install zvec
# Run a simple smoke test
python -c "import zvec; print('Import OK:', zvec.__version__)"
shell: bash
shell: bash
4 changes: 2 additions & 2 deletions .github/workflows/linux_arm64_docker_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions:
jobs:
build:
name: Zvec LinuxARM64 CI
runs-on: linux_arm64
runs-on: ubuntu-24.04-arm

strategy:
matrix:
Expand Down Expand Up @@ -145,4 +145,4 @@ jobs:
cd "$CLEAN_WORKSPACE/examples/c++"
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release
make -j $(nproc) && ./db-example && ./core-example && ./ailego-example
shell: bash
shell: bash
4 changes: 2 additions & 2 deletions .github/workflows/linux_x64_docker_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ permissions:
jobs:
build:
name: Zvec LinuxX64 CI
runs-on: linux_x64
runs-on: ubuntu-latest

strategy:
matrix:
Expand Down Expand Up @@ -150,4 +150,4 @@ jobs:
cd "$CLEAN_WORKSPACE/examples/c++"
mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release
make -j $NPROC && ./db-example && ./core-example && ./ailego-example
shell: bash
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/nightly_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:
jobs:
coverage:
name: Nightly Coverage Report
runs-on: linux_x64
runs-on: ubuntu-latest

strategy:
matrix:
Expand Down