martin/.github/workflows/ci.yml

226 lines
6.8 KiB
YAML
Raw Normal View History

2019-09-30 12:42:49 +03:00
name: CI
2019-09-29 21:47:24 +03:00
on:
push:
branches:
- main
pull_request:
branches:
- main
2022-10-07 23:32:40 +03:00
release:
branches:
- main
2019-09-29 21:47:24 +03:00
jobs:
lints:
name: Run format and clippy tests
2019-09-29 21:47:24 +03:00
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
2019-09-29 21:47:24 +03:00
- name: Install fmt & clippy
run: rustup component add clippy rustfmt
2019-09-29 21:47:24 +03:00
- name: Run cargo fmt
run: cargo fmt --all -- --check
2019-09-29 21:47:24 +03:00
- name: Run cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
2019-09-29 21:47:24 +03:00
test:
name: Test Suite
runs-on: ubuntu-latest
env:
# PG_* variables are used by psql
PGDATABASE: db
PGHOST: localhost
PGUSER: postgres
2019-09-29 21:47:24 +03:00
services:
postgres:
image: postgis/postgis:14-3.1-alpine
2019-09-29 21:47:24 +03:00
env:
# POSTGRES_* variables are used by the postgis/postgres image
POSTGRES_DB: ${{ env.PGDATABASE }}
POSTGRES_USER: ${{ env.PGUSER }}
POSTGRES_HOST_AUTH_METHOD: trust
2019-09-29 21:47:24 +03:00
ports:
# will assign a random free host port
- 5432/tcp
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Checkout sources
uses: actions/checkout@v3
2019-09-29 21:47:24 +03:00
- name: Setup database
run: |
sudo apt-get install postgresql-client
tests/fixtures/initdb.sh
2019-09-29 21:47:24 +03:00
env:
PGPORT: ${{ job.services.postgres.ports[5432] }}
2019-09-29 21:47:24 +03:00
- name: Run tests
run: cargo test --all
2019-09-29 21:47:24 +03:00
env:
DATABASE_URL: postgres://postgres@localhost:${{ job.services.postgres.ports[5432] }}/db
2019-09-29 21:47:24 +03:00
- name: Run build
run: cargo build
2019-09-29 21:47:24 +03:00
- name: Run martin with pg auto-discovery
run: ./target/debug/martin --default-srid 900913 &
2019-09-30 08:43:16 +03:00
env:
DATABASE_URL: postgres://postgres@localhost:${{ job.services.postgres.ports[5432] }}/db
2019-09-30 08:43:16 +03:00
- name: Test auto-discovered source responses
run: tests/test-auto-sources.sh
- name: Run server with config, overriding connection
run: pkill martin && ./target/debug/martin --config ./tests/config.yaml "$CONNECTION" &
env:
CONNECTION: postgres://postgres@localhost:${{ job.services.postgres.ports[5432] }}/db
- name: Test pre-configured source responses
run: tests/test-configured-sources.sh
2019-09-29 21:47:24 +03:00
build:
needs: [test]
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
include:
- os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-gnu
bin: martin
name: martin-Linux-x86_64.tar.gz
- os: windows-latest
rust: stable
target: x86_64-pc-windows-msvc
bin: martin.exe
name: martin-Windows-x86_64.zip
- os: macOS-latest
rust: stable
target: x86_64-apple-darwin
bin: martin
name: martin-Darwin-x86_64.tar.gz
runs-on: ${{ matrix.os }}
steps:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
override: true
target: ${{ matrix.target }}
- name: Checkout
uses: actions/checkout@v3
- name: Install OpenSSL
if: matrix.os == 'windows-latest'
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md
- name: Run build
run: cargo build --release --target ${{ matrix.target }}
docker:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
2022-05-27 13:35:06 +03:00
# https://github.com/docker/metadata-action
- name: Docker meta
id: docker_meta
2022-05-27 13:35:06 +03:00
uses: docker/metadata-action@v4
with:
images: maplibre/martin
2022-05-27 13:35:06 +03:00
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
2022-05-27 13:35:06 +03:00
uses: docker/setup-buildx-action@v2
with:
install: true
- name: Login to DockerHub
2022-05-27 13:35:06 +03:00
uses: docker/login-action@v2
if: ${{ github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork }}
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push the Docker image
2022-05-27 13:35:06 +03:00
uses: docker/build-push-action@v3
with:
push: ${{ github.actor != 'dependabot[bot]' && github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
2019-09-29 21:47:24 +03:00
release:
if: startsWith(github.ref, 'refs/tags/')
2019-09-29 21:47:24 +03:00
needs: [test]
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
include:
- os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-gnu
2019-09-29 21:47:24 +03:00
bin: martin
name: martin-Linux-x86_64.tar.gz
- os: windows-latest
rust: stable
target: x86_64-pc-windows-msvc
bin: martin.exe
name: martin-Windows-x86_64.zip
- os: macOS-latest
rust: stable
target: x86_64-apple-darwin
bin: martin
name: martin-Darwin-x86_64.tar.gz
runs-on: ${{ matrix.os }}
steps:
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@master
2019-09-29 21:47:24 +03:00
with:
toolchain: ${{ matrix.rust }}
override: true
target: ${{ matrix.target }}
- name: Checkout
uses: actions/checkout@v3
- name: Install OpenSSL
if: matrix.os == 'windows-latest'
run: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
vcpkg install openssl:x64-windows-static-md
2019-09-29 21:47:24 +03:00
- name: Run build
run: cargo build --release --target ${{ matrix.target }}
2019-09-29 21:47:24 +03:00
- name: Package
shell: bash
run: |
strip target/${{ matrix.target }}/release/${{ matrix.bin }}
cd target/${{ matrix.target }}/release
if [[ "${{ matrix.os }}" == "windows-latest" ]]
then
7z a ../../../${{ matrix.name }} ${{ matrix.bin }}
else
tar czvf ../../../${{ matrix.name }} ${{ matrix.bin }}
fi
cd -
2019-09-30 16:24:15 +03:00
- name: Generate SHA-256
if: matrix.os == 'macOS-latest'
run: shasum -a 256 ${{ matrix.name }}
2019-09-29 21:47:24 +03:00
- name: Publish
uses: softprops/action-gh-release@v1
with:
2019-09-30 12:42:49 +03:00
draft: true
files: 'martin*'
2019-09-30 13:33:42 +03:00
body_path: CHANGELOG.md
2019-09-29 21:47:24 +03:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}