mirror of
https://github.com/plausible/analytics.git
synced 2024-12-26 02:55:02 +03:00
152 lines
4.8 KiB
YAML
152 lines
4.8 KiB
YAML
name: Elixir CI
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [master, stable]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
CACHE_VERSION: v8
|
|
PERSISTENT_CACHE_DIR: cached
|
|
|
|
jobs:
|
|
build:
|
|
name: "Build and test (${{ matrix.mix_env }}, ${{ matrix.postgres_image }}${{ matrix.test_experimental_reduced_joins == '1' && ', experimental_reduced_joins' || '' }})"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
mix_env: ["test", "ce_test"]
|
|
postgres_image: ["postgres:16"]
|
|
test_experimental_reduced_joins: ["0"]
|
|
|
|
include:
|
|
- mix_env: "test"
|
|
postgres_image: "postgres:15"
|
|
test_experimental_reduced_joins: "0"
|
|
- mix_env: "test"
|
|
postgres_image: "postgres:16"
|
|
test_experimental_reduced_joins: "1"
|
|
|
|
env:
|
|
MIX_ENV: ${{ matrix.mix_env }}
|
|
TEST_EXPERIMENTAL_REDUCED_JOINS: ${{ matrix.test_experimental_reduced_joins }}
|
|
services:
|
|
postgres:
|
|
image: ${{ matrix.postgres_image }}
|
|
ports:
|
|
- 5432:5432
|
|
env:
|
|
POSTGRES_PASSWORD: postgres
|
|
options: >-
|
|
--health-cmd pg_isready
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
clickhouse:
|
|
image: clickhouse/clickhouse-server:24.3.3.102-alpine
|
|
ports:
|
|
- 8123:8123
|
|
env:
|
|
options: >-
|
|
--health-cmd nc -zw3 localhost 8124
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: marocchino/tool-versions-action@v1
|
|
id: versions
|
|
- uses: erlef/setup-beam@v1
|
|
with:
|
|
elixir-version: ${{ steps.versions.outputs.elixir }}
|
|
otp-version: ${{ steps.versions.outputs.erlang }}
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
deps
|
|
_build
|
|
tracker/node_modules
|
|
priv/tracker/js
|
|
${{ env.PERSISTENT_CACHE_DIR }}
|
|
key: ${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-${{ github.head_ref || github.ref }}-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: |
|
|
${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-${{ github.head_ref || github.ref }}-
|
|
${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-refs/heads/master-
|
|
|
|
- name: Check for changes in tracker/**
|
|
uses: dorny/paths-filter@v3
|
|
id: changes
|
|
with:
|
|
filters: |
|
|
tracker:
|
|
- 'tracker/**'
|
|
- name: Check if priv/tracker/js/plausible.js exists
|
|
run: |
|
|
if [ -f priv/tracker/js/plausible.js ]; then
|
|
echo "HAS_BUILT_TRACKER=true" >> $GITHUB_ENV
|
|
else
|
|
echo "HAS_BUILT_TRACKER=false" >> $GITHUB_ENV
|
|
fi
|
|
- run: npm install --prefix ./tracker
|
|
if: steps.changes.outputs.tracker == 'true' || env.HAS_BUILT_TRACKER == 'false'
|
|
- run: npm run deploy --prefix ./tracker
|
|
if: steps.changes.outputs.tracker == 'true' || env.HAS_BUILT_TRACKER == 'false'
|
|
|
|
- run: mix deps.get --only $MIX_ENV
|
|
- run: mix compile --warnings-as-errors --all-warnings
|
|
- run: mix do ecto.create, ecto.migrate
|
|
- run: mix run -e "Tzdata.ReleaseUpdater.poll_for_update"
|
|
|
|
- run: make minio
|
|
if: env.MIX_ENV == 'test'
|
|
- run: mix test --include slow --include minio --max-failures 1 --warnings-as-errors
|
|
if: env.MIX_ENV == 'test'
|
|
env:
|
|
MINIO_HOST_FOR_CLICKHOUSE: "172.17.0.1"
|
|
|
|
- run: mix test --include slow --max-failures 1 --warnings-as-errors
|
|
if: env.MIX_ENV == 'ce_test'
|
|
|
|
static:
|
|
name: Static checks (format, credo, dialyzer)
|
|
env:
|
|
MIX_ENV: test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: marocchino/tool-versions-action@v1
|
|
id: versions
|
|
- uses: erlef/setup-beam@v1
|
|
with:
|
|
elixir-version: ${{ steps.versions.outputs.elixir }}
|
|
otp-version: ${{ steps.versions.outputs.erlang }}
|
|
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
deps
|
|
_build
|
|
priv/plts
|
|
key: static-${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-${{ github.head_ref || github.ref }}-${{ hashFiles('**/mix.lock') }}
|
|
restore-keys: |
|
|
static-${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-${{ github.head_ref || github.ref }}-
|
|
static-${{ env.MIX_ENV }}-${{ env.CACHE_VERSION }}-refs/heads/master-
|
|
|
|
- run: mix deps.get
|
|
- run: mix compile --warnings-as-errors --all-warnings
|
|
- run: mix format --check-formatted
|
|
- run: mix deps.unlock --check-unused
|
|
- run: mix credo diff --from-git-merge-base origin/master
|
|
- run: mix dialyzer
|