Skip to content

Commit

Permalink
fix: hack for simd inline (#410)
Browse files Browse the repository at this point in the history
* fix: hack for simd inline

Signed-off-by: usamoi <[email protected]>

ci: fix toolchain not detected

Signed-off-by: usamoi <[email protected]>

* test: relax test_cos_i8

Signed-off-by: usamoi <[email protected]>

---------

Signed-off-by: usamoi <[email protected]>
  • Loading branch information
usamoi authored Mar 5, 2024
1 parent 3a56a8c commit 875a20e
Show file tree
Hide file tree
Showing 60 changed files with 416 additions and 259 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ github.job }}-${{ matrix.version }}-${{ matrix.os }}-${{ hashFiles('./Cargo.lock') }}
- name: Set up PostgreSQL
run: ./scripts/ci_setup.sh
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand All @@ -75,9 +77,10 @@ jobs:
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
- name: Set up Sqllogictest
run: cargo binstall sqllogictest-bin -y --force
- name: Set up Environment
shell: bash
run: ./scripts/ci_setup.sh
- name: Set up Pgrx
run: |
cargo install cargo-pgrx@$(grep 'pgrx = {' Cargo.toml | cut -d '"' -f 2 | head -n 1) --debug
cargo pgrx init --pg$VERSION=$(which pg_config)
- name: Release build
run: |
cargo pgrx install --no-default-features --features "pg$VERSION" --release
Expand Down Expand Up @@ -125,9 +128,14 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
key: ${{ github.job }}-${{ matrix.version }}-${{ matrix.os }}-${{ hashFiles('./Cargo.lock') }}
- name: Set up Environment
shell: bash
- name: Set up PostgreSQL
run: ./scripts/ci_setup.sh
- name: Set up Binstall
run: curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
- name: Set up Pgrx
run: |
cargo install cargo-pgrx@$(grep 'pgrx = {' Cargo.toml | cut -d '"' -f 2 | head -n 1) --debug
cargo pgrx init --pg$VERSION=$(which pg_config)
- name: Format check
run: cargo fmt --check
- name: Semantic check
Expand Down
Loading

0 comments on commit 875a20e

Please sign in to comment.