chirpstack/.github/workflows/main.yml

143 lines
3.8 KiB
YAML
Raw Normal View History

2022-04-06 20:18:32 +00:00
name: CI
on:
push:
branches:
- '*'
tags:
- 'v*'
pull_request:
2024-05-08 13:12:04 +00:00
env:
CARGO_INCREMENTAL: 0
2022-04-06 20:18:32 +00:00
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
database:
- postgres
- sqlite
env:
DATABASE: ${{ matrix.database }}
2022-04-06 20:18:32 +00:00
steps:
-
name: Checkout
2024-07-22 09:14:37 +00:00
uses: actions/checkout@v4
2023-05-29 13:51:59 +00:00
-
name: Install Nix
uses: cachix/install-nix-action@v27
2023-05-29 13:51:59 +00:00
with:
nix_path: nixpkgs=channel:nixos-24.05
-
name: Cargo cache
2024-07-22 09:14:37 +00:00
uses: actions/cache@v4
with:
2023-05-29 13:51:59 +00:00
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-test-${{ matrix.database }}-${{ hashFiles('**/Cargo.lock') }}
2023-05-29 13:51:59 +00:00
-
name: Start dependency services
run: docker compose up -d
2022-04-06 20:18:32 +00:00
-
name: Build UI
run: nix-shell --command "make build-ui"
2022-04-06 20:18:32 +00:00
-
name: Run tests
2023-05-29 13:51:59 +00:00
run: nix-shell --command "make test"
2022-04-18 20:19:24 +00:00
dist:
needs: tests
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
strategy:
matrix:
database:
- postgres
- sqlite
env:
DATABASE: ${{ matrix.database }}
steps:
-
name: Checkout
2024-07-22 09:14:37 +00:00
uses: actions/checkout@v4
2023-05-30 07:39:38 +00:00
-
name: Install Nix
uses: cachix/install-nix-action@v27
2023-05-30 07:39:38 +00:00
with:
nix_path: nixpkgs=channel:nixos-24.05
-
name: Cargo cache
2024-07-22 09:14:37 +00:00
uses: actions/cache@v4
with:
2023-05-30 07:39:38 +00:00
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-dist-${{ hashFiles('**/Cargo.lock') }}
-
name: Build UI
run: nix-shell --command "make build-ui"
2023-05-30 07:39:38 +00:00
-
name: Install dev dependencies
run: nix-shell --command "make dev-dependencies"
-
name: Build distributables
2023-05-30 07:39:38 +00:00
run: nix-shell --command "make dist"
-
name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
-
name: Upload binaries to S3
run: |
aws s3 sync dist s3://builds.loraserver.io/chirpstack
if: startsWith(github.ref, 'refs/tags/v')
2022-04-18 20:19:24 +00:00
-
2024-10-29 11:00:16 +00:00
name: Docker meta
2022-04-18 20:19:24 +00:00
id: meta
uses: docker/metadata-action@v3
with:
images: |
2024-10-29 12:16:15 +00:00
chirpstack/${{ github.event.repository.name }}${{ contains(matrix.database, 'postgres') && '' || format('-{0}', matrix.database) }}
2022-04-18 20:19:24 +00:00
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
config: .github/buildkitd.toml
2022-04-18 20:19:24 +00:00
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
2023-05-30 07:39:38 +00:00
context: .
2022-04-18 20:19:24 +00:00
push: ${{ startsWith(github.ref, 'refs/tags/v') }}
2023-05-30 07:39:38 +00:00
platforms: linux/amd64,linux/arm/v7,linux/arm64
2022-04-18 20:19:24 +00:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}