Skip to content

Commit

Permalink
chore: add postgres sqllogicaltest for arm (#159)
Browse files Browse the repository at this point in the history
Signed-off-by: Keming <kemingyang@tensorchord.ai>
  • Loading branch information
kemingy authored Dec 27, 2024
1 parent b129dce commit 2b30bdf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/psql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: PostgresSQL
on:
pull_request:
paths:
- '.github/workflows/rust.yml'
- '.github/workflows/psql.yml'
- 'src/**'
- 'Cargo.lock'
- 'Cargo.toml'
Expand All @@ -15,7 +15,7 @@ on:
branches:
- main
paths:
- '.github/workflows/rust.yml'
- '.github/workflows/psql.yml'
- 'src/**'
- 'Cargo.lock'
- 'Cargo.toml'
Expand All @@ -42,12 +42,12 @@ jobs:
strategy:
matrix:
version: ["14", "15", "16", "17"]
runner: ["ubuntu-latest"]
runner: ["ubicloud-standard-4", "ubicloud-standard-4-arm"]
env:
PGRX_IMAGE: "ghcr.io/tensorchord/vectorchord-pgrx:0.12.9-nightly-2024-12-25"
SQLLOGICTEST: "0.22.0"
ARCH: "x86_64"
PLATFORM: "amd64"
SQLLOGICTEST: "0.25.0"
ARCH: ${{ matrix.runner == 'ubicloud-standard-4' && 'x86_64' || 'aarch64' }}
PLATFORM: ${{ matrix.runner == 'ubicloud-standard-4' && 'amd64' || 'arm64' }}

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 2b30bdf

Please sign in to comment.