stac-server #608
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_TERM_VERBOSE: true | |
jobs: | |
test-ubuntu: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
args: | |
- "-p stac" | |
- "-p stac -F reqwest" | |
- "-p stac-api" | |
- "-p stac -p stac-api -F geo" | |
- "-p stac -p stac-api -F schemars" | |
- "-p stac-async" | |
- "-p stac-cli --no-default-features" | |
- "-p stac-server" | |
- "-p stac-validate" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test ${{ matrix.args }} | |
test-ubuntu-with-gdal: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install GDAL | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgdal-dev | |
- name: Test | |
run: cargo test -p stac -p stac-cli # gdal is default for stac-cli | |
test-ubuntu-with-pgstac: | |
runs-on: ubuntu-latest | |
services: | |
pgstac: | |
image: ghcr.io/stac-utils/pgstac:v0.8.5 | |
env: | |
POSTGRES_USER: username | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: postgis | |
PGUSER: username | |
PGPASSWORD: password | |
PGDATABASE: postgis | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test -p pgstac | |
test-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test --no-default-features -F reqwest -F geo -F schemars | |
test-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Test | |
run: cargo test --no-default-features -F reqwest -F geo -F schemars | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install GDAL | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgdal-dev | |
- name: Build | |
run: cargo build --all-features | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Fmt | |
run: cargo fmt | |
doc: | |
runs-on: ubuntu-latest | |
env: | |
RUSTDOCFLAGS: -Dwarnings | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Install GDAL | |
run: | | |
sudo apt-get update | |
sudo apt-get install libgdal-dev | |
- name: Doc | |
run: cargo doc --all-features | |
validate-stac-server: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install stac-api-validator | |
run: pip install -r scripts/requirements.txt | |
- name: Validate | |
run: scripts/validate-stac-server | |
validate-stac-server-with-pgstac: | |
runs-on: ubuntu-latest | |
services: | |
pgstac: | |
image: ghcr.io/stac-utils/pgstac:v0.8.5 | |
env: | |
POSTGRES_USER: username | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: postgis | |
PGUSER: username | |
PGPASSWORD: password | |
PGDATABASE: postgis | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Rust cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: Install stac-api-validator | |
run: pip install -r scripts/requirements.txt | |
- name: Validate | |
run: scripts/validate-stac-server --pgstac |