fix: set length of RecordMat::token with NAMEDATALEN (#17) #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- ".cargo/**" | |
- ".github/**" | |
- "src/**" | |
- "Cargo.lock" | |
- "Cargo.toml" | |
- "pg_bestmatch.control" | |
- "vendor/**" | |
pull_request: | |
branches: ["main"] | |
paths: | |
- ".cargo/**" | |
- ".github/**" | |
- "src/**" | |
- "Cargo.lock" | |
- "Cargo.toml" | |
- "pg_bestmatch.control" | |
- "vendor/**" | |
merge_group: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
SCCACHE_GHA_ENABLED: true | |
RUSTC_WRAPPER: sccache | |
RUSTFLAGS: "-Dwarnings" | |
jobs: | |
check: | |
strategy: | |
matrix: | |
version: [12, 13, 14, 15, 16] | |
arch: ["x86_64"] | |
runs-on: ubuntu-latest | |
env: | |
SEMVER: "0.0.0" | |
VERSION: ${{ matrix.version }} | |
ARCH: ${{ matrix.arch }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Environment | |
run: | | |
sudo apt-get remove -y '^postgres.*' '^libpq.*' '^clang.*' '^llvm.*' '^libclang.*' '^libllvm.*' '^mono-llvm.*' | |
sudo apt-get purge -y '^postgres.*' '^libpq.*' '^clang.*' '^llvm.*' '^libclang.*' '^libllvm.*' '^mono-llvm.*' | |
sudo apt-get update | |
sudo apt-get install -y build-essential crossbuild-essential-arm64 | |
sudo apt-get install -y qemu-user-static | |
touch ~/.cargo/config.toml | |
echo 'target.aarch64-unknown-linux-gnu.linker = "aarch64-linux-gnu-gcc"' >> ~/.cargo/config.toml | |
echo 'target.aarch64-unknown-linux-gnu.runner = ["qemu-aarch64-static", "-L", "/usr/aarch64-linux-gnu"]' >> ~/.cargo/config.toml | |
- name: Set up Sccache | |
uses: mozilla-actions/[email protected] | |
- name: Set up Cache | |
uses: actions/cache/restore@v4 | |
id: cache | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: ${{ github.job }}-${{ hashFiles('./Cargo.lock') }}-${{ matrix.version }}-${{ matrix.arch }} | |
- name: Set up Pgrx | |
run: | | |
# pg_config | |
mkdir -p ~/.pg_config | |
touch ~/.pg_config/pg_config | |
chmod 777 ~/.pg_config/pg_config | |
echo "#!/usr/bin/env bash" >> ~/.pg_config/pg_config | |
echo "$(pwd)/tools/pg_config.sh \"\$@\" < $(pwd)/vendor/pg_config/pg${VERSION}_${ARCH}-unknown-linux-gnu.txt" >> ~/.pg_config/pg_config | |
mkdir -p ~/.pgrx && echo "configs.pg$VERSION=\"$HOME/.pg_config/pg_config\"" > ~/.pgrx/config.toml | |
# pgrx_binding | |
mkdir -p ~/.pgrx_binding | |
cp ./vendor/pgrx_binding/pg${VERSION}_$(uname --machine)-unknown-linux-gnu.rs ~/.pgrx_binding/pg${VERSION}_raw_bindings.rs | |
echo PGRX_TARGET_INFO_PATH_PG$VERSION=$HOME/.pgrx_binding >> "$GITHUB_ENV" | |
- name: Clippy | |
run: cargo clippy --features "pg$VERSION" --target $ARCH-unknown-linux-gnu | |
- name: Build | |
run: cargo build --lib --features "pg$VERSION" --target $ARCH-unknown-linux-gnu | |
- name: Post Set up Cache | |
uses: actions/cache/save@v4 | |
if: ${{ !steps.cache.outputs.cache-hit }} | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
key: ${{ github.job }}-${{ hashFiles('./Cargo.lock') }}-${{ matrix.version }}-${{ matrix.arch }} |