2019-09-30 12:42:49 +03:00
|
|
|
name: CI
|
2019-09-29 21:47:24 +03:00
|
|
|
|
2020-05-05 14:13:48 +03:00
|
|
|
on:
|
|
|
|
push:
|
2023-07-04 00:29:44 +03:00
|
|
|
branches: [ main ]
|
2023-05-30 04:00:44 +03:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- 'demo/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'homebrew-formula/**'
|
2020-05-05 14:13:48 +03:00
|
|
|
pull_request:
|
2023-07-04 00:29:44 +03:00
|
|
|
branches: [ main ]
|
2023-05-30 04:00:44 +03:00
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- 'demo/**'
|
|
|
|
- 'docs/**'
|
|
|
|
- 'homebrew-formula/**'
|
2022-10-07 23:32:40 +03:00
|
|
|
release:
|
2023-07-04 00:29:44 +03:00
|
|
|
types: [ published ]
|
2022-10-31 23:28:21 +03:00
|
|
|
workflow_dispatch:
|
2019-09-29 21:47:24 +03:00
|
|
|
|
|
|
|
jobs:
|
2022-10-31 23:28:21 +03:00
|
|
|
build:
|
2022-11-19 01:17:08 +03:00
|
|
|
# Don't change this name - it is used by the merge protection rules
|
2022-11-19 01:39:44 +03:00
|
|
|
name: Build ${{ matrix.target }}
|
2022-10-31 23:28:21 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
|
|
|
target: x86_64-unknown-linux-gnu
|
|
|
|
- os: windows-latest
|
|
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
- os: macOS-latest
|
|
|
|
target: x86_64-apple-darwin
|
2022-11-19 01:12:55 +03:00
|
|
|
- os: macOS-latest
|
|
|
|
target: aarch64-apple-darwin
|
2022-10-31 23:28:21 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
2019-09-29 21:47:24 +03:00
|
|
|
steps:
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Checkout
|
2022-05-27 15:00:45 +03:00
|
|
|
uses: actions/checkout@v3
|
2023-03-25 21:40:23 +03:00
|
|
|
- name: Rust Versions
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
rustc --version
|
|
|
|
cargo --version
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Lint
|
2022-11-19 01:12:55 +03:00
|
|
|
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
2022-10-31 23:28:21 +03:00
|
|
|
shell: bash
|
2019-09-29 21:47:24 +03:00
|
|
|
run: |
|
2023-07-04 00:29:44 +03:00
|
|
|
set -x
|
2023-03-25 21:40:23 +03:00
|
|
|
cargo fmt --all -- --check
|
2023-07-04 00:29:44 +03:00
|
|
|
cargo clippy --package martin-tile-utils -- -D warnings
|
|
|
|
cargo clippy --package martin-mbtiles -- -D warnings
|
|
|
|
cargo clippy --package martin-mbtiles --no-default-features --features native-tls -- -D warnings
|
|
|
|
cargo clippy --package martin-mbtiles --no-default-features --features rustls -- -D warnings
|
|
|
|
cargo clippy --package martin -- -D warnings
|
|
|
|
cargo clippy --package martin --features vendored-openssl -- -D warnings
|
|
|
|
cargo clippy --package martin --features bless-tests -- -D warnings
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Install OpenSSL (Windows)
|
|
|
|
if: runner.os == 'Windows'
|
|
|
|
run: |
|
|
|
|
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
|
|
vcpkg install openssl:x64-windows-static-md
|
2023-07-10 21:38:48 +03:00
|
|
|
- name: Install cargo-deb
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
run: |
|
|
|
|
sudo apt install -y dpkg dpkg-dev liblzma-dev
|
|
|
|
cargo install cargo-deb
|
2019-09-29 21:47:24 +03:00
|
|
|
- name: Run build
|
2022-10-31 23:28:21 +03:00
|
|
|
shell: bash
|
2022-10-28 21:52:39 +03:00
|
|
|
run: |
|
2022-11-19 01:12:55 +03:00
|
|
|
if [[ "${{ matrix.target }}" == "aarch64-apple-darwin" ]]; then
|
|
|
|
rustup target add aarch64-apple-darwin
|
|
|
|
# compile without debug symbols
|
2023-06-04 01:54:50 +03:00
|
|
|
RUSTFLAGS='-C link-arg=-s' cargo build --release --target ${{ matrix.target }} --features=vendored-openssl --package martin
|
2023-06-17 02:11:13 +03:00
|
|
|
RUSTFLAGS='-C link-arg=-s' cargo build --release --target ${{ matrix.target }} --features=cli --package martin-mbtiles
|
2022-11-19 01:12:55 +03:00
|
|
|
else
|
2023-06-04 01:54:50 +03:00
|
|
|
cargo build --release --target ${{ matrix.target }} --features=ssl --package martin
|
2023-06-17 02:11:13 +03:00
|
|
|
cargo build --release --target ${{ matrix.target }} --features=cli --package martin-mbtiles
|
2022-11-19 01:12:55 +03:00
|
|
|
fi
|
2022-10-31 23:28:21 +03:00
|
|
|
mkdir target_releases
|
|
|
|
if [[ "${{ runner.os }}" == "Windows" ]]; then
|
|
|
|
mv target/${{ matrix.target }}/release/martin.exe target_releases
|
2023-06-04 01:54:50 +03:00
|
|
|
mv target/${{ matrix.target }}/release/mbtiles.exe target_releases
|
2022-10-31 23:28:21 +03:00
|
|
|
else
|
|
|
|
mv target/${{ matrix.target }}/release/martin target_releases
|
2023-06-04 01:54:50 +03:00
|
|
|
mv target/${{ matrix.target }}/release/mbtiles target_releases
|
2022-10-31 23:28:21 +03:00
|
|
|
fi
|
2023-07-10 21:38:48 +03:00
|
|
|
- name: Run build (debian package)
|
|
|
|
if: matrix.os == 'ubuntu-latest'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cargo deb -v -p martin --output target/debian/martin.deb
|
|
|
|
mv target/debian/martin.deb target_releases
|
2022-11-19 01:12:55 +03:00
|
|
|
- name: Save build artifact build-${{ matrix.target }}
|
2022-10-28 21:52:39 +03:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2022-11-19 01:12:55 +03:00
|
|
|
name: build-${{ matrix.target }}
|
2022-10-31 23:28:21 +03:00
|
|
|
path: target_releases/*
|
2021-10-12 17:56:45 +03:00
|
|
|
|
2022-10-31 23:28:21 +03:00
|
|
|
test:
|
2022-11-19 01:17:08 +03:00
|
|
|
# Don't change this name - it is used by the merge protection rules
|
2022-11-19 01:39:44 +03:00
|
|
|
name: Test & package ${{ matrix.target }}
|
2023-07-04 00:29:44 +03:00
|
|
|
needs: [ build ]
|
2022-10-22 20:39:05 +03:00
|
|
|
strategy:
|
2022-10-31 23:28:21 +03:00
|
|
|
fail-fast: true
|
2022-10-22 20:39:05 +03:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
2023-06-04 01:54:50 +03:00
|
|
|
ext: ''
|
2022-11-19 01:12:55 +03:00
|
|
|
target: x86_64-unknown-linux-gnu
|
2022-10-22 20:39:05 +03:00
|
|
|
name: martin-Linux-x86_64.tar.gz
|
|
|
|
- os: windows-latest
|
2023-06-04 01:54:50 +03:00
|
|
|
ext: '.exe'
|
2022-11-19 01:12:55 +03:00
|
|
|
target: x86_64-pc-windows-msvc
|
2022-10-22 20:39:05 +03:00
|
|
|
name: martin-Windows-x86_64.zip
|
|
|
|
- os: macOS-latest
|
2023-06-04 01:54:50 +03:00
|
|
|
ext: ''
|
2022-11-19 01:12:55 +03:00
|
|
|
target: x86_64-apple-darwin
|
2022-10-22 20:39:05 +03:00
|
|
|
name: martin-Darwin-x86_64.tar.gz
|
2022-11-19 01:12:55 +03:00
|
|
|
- os: ubuntu-latest
|
2023-06-04 01:54:50 +03:00
|
|
|
ext: ''
|
2022-11-19 01:12:55 +03:00
|
|
|
target: aarch64-apple-darwin
|
|
|
|
name: martin-Darwin-aarch64.tar.gz
|
|
|
|
runs-on: ${{ matrix.os }}
|
2022-10-22 20:39:05 +03:00
|
|
|
steps:
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Checkout sources
|
2022-10-22 20:39:05 +03:00
|
|
|
uses: actions/checkout@v3
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Start postgres
|
2022-11-19 01:12:55 +03:00
|
|
|
if: matrix.target != 'aarch64-apple-darwin'
|
2022-10-31 23:28:21 +03:00
|
|
|
uses: nyurik/action-setup-postgis@v1
|
|
|
|
id: pg
|
|
|
|
with:
|
|
|
|
username: test
|
|
|
|
password: test
|
|
|
|
database: test
|
|
|
|
rights: --superuser
|
2022-12-12 17:11:10 +03:00
|
|
|
- name: Log DATABASE_URL string
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "DATABASE_URL=$DATABASE_URL"
|
|
|
|
echo "And in base64 to bypass Github's obfuscation:"
|
|
|
|
echo "$DATABASE_URL" | base64
|
|
|
|
env:
|
|
|
|
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Init database
|
2022-11-19 01:12:55 +03:00
|
|
|
if: matrix.target != 'aarch64-apple-darwin'
|
2022-10-31 23:28:21 +03:00
|
|
|
shell: bash
|
|
|
|
run: tests/fixtures/initdb.sh
|
|
|
|
env:
|
|
|
|
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
|
|
|
|
- name: Unit Tests (Linux)
|
2022-11-19 01:12:55 +03:00
|
|
|
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
2022-10-31 23:28:21 +03:00
|
|
|
shell: bash
|
2022-10-22 20:39:05 +03:00
|
|
|
run: |
|
2023-07-04 00:29:44 +03:00
|
|
|
set -x
|
|
|
|
cargo test --package martin-tile-utils
|
|
|
|
cargo test --package martin-mbtiles
|
|
|
|
cargo test --package martin-mbtiles --no-default-features --features rustls
|
|
|
|
cargo test --package martin --features vendored-openssl
|
2022-11-19 17:50:27 +03:00
|
|
|
cargo test --doc
|
2022-10-31 23:28:21 +03:00
|
|
|
rm -rf target
|
|
|
|
env:
|
|
|
|
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
|
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
with:
|
2022-11-19 01:12:55 +03:00
|
|
|
name: build-${{ matrix.target }}
|
2022-10-31 23:28:21 +03:00
|
|
|
path: target/
|
2022-12-12 17:11:10 +03:00
|
|
|
- name: Integration Tests
|
2022-11-19 01:12:55 +03:00
|
|
|
if: matrix.target != 'aarch64-apple-darwin'
|
2022-10-31 23:28:21 +03:00
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [[ "${{ runner.os }}" != "Windows" ]]; then
|
2023-06-04 01:54:50 +03:00
|
|
|
chmod +x target/martin${{ matrix.ext }}
|
|
|
|
chmod +x target/mbtiles${{ matrix.ext }}
|
2022-10-31 23:28:21 +03:00
|
|
|
fi
|
|
|
|
tests/test.sh
|
|
|
|
env:
|
|
|
|
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
|
|
|
|
MARTIN_BUILD: "-"
|
2023-06-04 01:54:50 +03:00
|
|
|
MARTIN_BIN: target/martin${{ matrix.ext }}
|
|
|
|
MBTILES_BUILD: "-"
|
|
|
|
MBTILES_BIN: target/mbtiles${{ matrix.ext }}
|
2023-07-10 21:38:48 +03:00
|
|
|
- name: Integration Tests (with debian package)
|
|
|
|
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo dpkg -i target/martin.deb
|
|
|
|
tests/test.sh
|
|
|
|
env:
|
|
|
|
DATABASE_URL: ${{ steps.pg.outputs.connection-uri }}
|
|
|
|
MARTIN_BUILD: "-"
|
|
|
|
MARTIN_BIN: /usr/bin/martin
|
|
|
|
MBTILES_BUILD: "-"
|
|
|
|
MBTILES_BIN: target/mbtiles${{ matrix.ext }}
|
2023-01-01 08:03:21 +03:00
|
|
|
- name: Compare test output results (Linux)
|
|
|
|
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
|
|
|
run: diff --brief --recursive --new-file tests/output tests/expected
|
|
|
|
- name: Save test output on failure (Linux)
|
|
|
|
if: failure() && matrix.target == 'x86_64-unknown-linux-gnu'
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-06-23 06:01:57 +03:00
|
|
|
name: failed-test-output
|
2023-01-01 08:03:21 +03:00
|
|
|
path: tests/output/*
|
|
|
|
retention-days: 5
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Package
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cd target/
|
2022-11-19 01:12:55 +03:00
|
|
|
# Symbol stripping does not work cross-platform
|
|
|
|
if [[ "${{ matrix.target }}" != "aarch64-apple-darwin" ]]; then
|
2023-06-04 01:54:50 +03:00
|
|
|
strip martin${{ matrix.ext }}
|
|
|
|
strip mbtiles${{ matrix.ext }}
|
2022-11-19 01:12:55 +03:00
|
|
|
fi
|
2022-10-31 23:28:21 +03:00
|
|
|
if [[ "${{ runner.os }}" == "Windows" ]]; then
|
2023-06-04 01:54:50 +03:00
|
|
|
7z a ../${{ matrix.name }} martin${{ matrix.ext }} mbtiles${{ matrix.ext }}
|
2022-10-31 23:28:21 +03:00
|
|
|
else
|
2023-06-04 01:54:50 +03:00
|
|
|
tar czvf ../${{ matrix.name }} martin${{ matrix.ext }} mbtiles${{ matrix.ext }}
|
2022-10-31 23:28:21 +03:00
|
|
|
fi
|
|
|
|
cd -
|
2023-07-10 21:38:48 +03:00
|
|
|
- name: Package (debian)
|
|
|
|
if: matrix.target == 'x86_64-unknown-linux-gnu'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
cd target/
|
|
|
|
tar czvf ../martin-debian-x86_64.tar.gz martin.deb
|
|
|
|
cd -
|
2022-10-31 23:28:21 +03:00
|
|
|
- name: Generate SHA-256 (MacOS)
|
2022-11-19 01:12:55 +03:00
|
|
|
if: matrix.target == 'x86_64-apple-darwin' || matrix.target == 'aarch64-apple-darwin'
|
2022-10-31 23:28:21 +03:00
|
|
|
run: shasum -a 256 ${{ matrix.name }}
|
|
|
|
- name: Publish
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
draft: true
|
|
|
|
files: 'martin*'
|
|
|
|
body_path: CHANGELOG.md
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-01-01 08:03:21 +03:00
|
|
|
|
|
|
|
test-legacy:
|
|
|
|
# Don't change this name - it is used by the merge protection rules
|
|
|
|
name: Test Legacy DB
|
2023-07-04 00:29:44 +03:00
|
|
|
needs: [ build ]
|
2023-01-01 08:03:21 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
fail-fast: true
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
# These must match the versions of postgres used in the docker-compose.yml
|
|
|
|
- image: postgis/postgis:11-3.0-alpine
|
2023-02-06 22:32:28 +03:00
|
|
|
args: postgres
|
|
|
|
sslmode: disable
|
2023-01-01 08:03:21 +03:00
|
|
|
- image: postgis/postgis:14-3.3-alpine
|
2023-02-06 22:32:28 +03:00
|
|
|
args: postgres
|
|
|
|
sslmode: disable
|
|
|
|
# alpine images don't support SSL, so for this we use the debian images
|
|
|
|
- image: postgis/postgis:15-3.3
|
|
|
|
args: postgres -c ssl=on -c ssl_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem -c ssl_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
|
|
|
|
sslmode: require
|
2023-01-01 08:03:21 +03:00
|
|
|
env:
|
|
|
|
# PG_* variables are used by psql
|
|
|
|
PGDATABASE: test
|
|
|
|
PGHOST: localhost
|
|
|
|
PGUSER: postgres
|
2023-02-06 22:32:28 +03:00
|
|
|
PGPASSWORD: postgres
|
2023-01-01 08:03:21 +03:00
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: ${{ matrix.image }}
|
|
|
|
ports:
|
|
|
|
# will assign a random free host port
|
|
|
|
- 5432/tcp
|
2023-02-06 22:32:28 +03:00
|
|
|
# Sadly there is currently no way to pass arguments to the service image other than this hack
|
|
|
|
# See also https://stackoverflow.com/a/62720566/177275
|
|
|
|
options: >-
|
|
|
|
-e POSTGRES_DB=test
|
|
|
|
-e POSTGRES_USER=postgres
|
|
|
|
-e POSTGRES_PASSWORD=postgres
|
|
|
|
-e PGDATABASE=test
|
|
|
|
-e PGUSER=postgres
|
|
|
|
-e PGPASSWORD=postgres
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
--entrypoint sh
|
|
|
|
${{ matrix.image }}
|
|
|
|
-c "exec docker-entrypoint.sh ${{ matrix.args }}"
|
2023-01-01 08:03:21 +03:00
|
|
|
steps:
|
2023-07-04 00:29:44 +03:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup database
|
|
|
|
run: |
|
|
|
|
# sudo apt-get install postgresql-client
|
|
|
|
tests/fixtures/initdb.sh
|
|
|
|
env:
|
|
|
|
PGPORT: ${{ job.services.postgres.ports[5432] }}
|
|
|
|
- name: Unit Tests (Linux)
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
echo "Running unit tests, connecting to DATABASE_URL=$DATABASE_URL"
|
|
|
|
echo "Same but as base64 to prevent GitHub obfuscation (this is not a secret):"
|
|
|
|
echo "$DATABASE_URL" | base64
|
|
|
|
set -x
|
|
|
|
cargo test --package martin-tile-utils
|
|
|
|
cargo test --package martin-mbtiles
|
|
|
|
cargo test --package martin-mbtiles --no-default-features --features rustls
|
|
|
|
cargo test --package martin --features vendored-openssl
|
|
|
|
cargo test --doc
|
|
|
|
rm -rf target
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgres://${{ env.PGUSER }}:${{ env.PGUSER }}@${{ env.PGHOST }}:${{ job.services.postgres.ports[5432] }}/${{ env.PGDATABASE }}?sslmode=${{ matrix.sslmode }}
|
|
|
|
- name: Save test output on failure
|
|
|
|
if: failure()
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: test-output
|
|
|
|
path: tests/output/*
|
|
|
|
retention-days: 5
|
|
|
|
- uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: build-x86_64-unknown-linux-gnu
|
|
|
|
path: target/
|
|
|
|
- name: Integration Tests
|
|
|
|
run: |
|
|
|
|
chmod +x target/martin target/mbtiles
|
|
|
|
tests/test.sh
|
|
|
|
env:
|
|
|
|
DATABASE_URL: postgres://${{ env.PGUSER }}:${{ env.PGUSER }}@${{ env.PGHOST }}:${{ job.services.postgres.ports[5432] }}/${{ env.PGDATABASE }}?sslmode=${{ matrix.sslmode }}
|
|
|
|
MARTIN_BUILD: "-"
|
|
|
|
MARTIN_BIN: target/martin
|
|
|
|
MBTILES_BUILD: "-"
|
|
|
|
MBTILES_BIN: target/mbtiles
|