mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-02 10:01:37 +00:00
389ff844c4
This reverts commit 975eb7d6ae.
108 lines
3.9 KiB
YAML
108 lines
3.9 KiB
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 16
|
|
registry-url: https://registry.npmjs.org/
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Build
|
|
run: npm run build
|
|
- name: Test
|
|
run: npm run test-with-coverage
|
|
- name: Lint
|
|
run: npm run eslint
|
|
- name: Docker login
|
|
if: (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push'
|
|
run: echo ${{ secrets.DOCKER_KEY }} | docker login -u koenkk --password-stdin
|
|
- name: Docker login ghcr.io
|
|
if: (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push'
|
|
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u koenkk --password-stdin
|
|
- name: Docker setup - QEMU
|
|
if: (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push'
|
|
uses: docker/setup-qemu-action@v2
|
|
with:
|
|
platforms: all
|
|
- name: Docker setup - Buildx
|
|
if: (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push'
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
with:
|
|
version: latest
|
|
- name: Docker build dev
|
|
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
|
|
run: |
|
|
docker buildx build \
|
|
--build-arg COMMIT=$(git rev-parse --short HEAD) \
|
|
--platform linux/arm64/v8,linux/amd64,linux/arm/v6,linux/arm/v7 \
|
|
-f docker/Dockerfile \
|
|
--push \
|
|
-t koenkk/zigbee2mqtt:latest-dev -t ghcr.io/koenkk/zigbee2mqtt:latest-dev \
|
|
.
|
|
- name: Docker build release
|
|
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push'
|
|
run: |
|
|
TAG="$(git describe --tags)"
|
|
docker buildx build \
|
|
--build-arg COMMIT=$(git rev-parse --short HEAD) \
|
|
--platform linux/arm64/v8,linux/amd64,linux/arm/v6,linux/arm/v7 \
|
|
-f docker/Dockerfile \
|
|
--push \
|
|
-t koenkk/zigbee2mqtt:latest -t "koenkk/zigbee2mqtt:$TAG" -t ghcr.io/koenkk/zigbee2mqtt:latest -t "ghcr.io/koenkk/zigbee2mqtt:$TAG" \
|
|
.
|
|
- name: Publish to npm
|
|
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push'
|
|
run: npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN }}
|
|
- name: Trigger zigbee2mqtt/hassio-zigbee2mqtt build
|
|
if: github.ref == 'refs/heads/dev' && github.event_name == 'push'
|
|
run: |
|
|
curl \
|
|
-X POST \
|
|
-H "Authorization: token ${{ secrets.CR_PAT }}" \
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
https://api.github.com/repos/zigbee2mqtt/hassio-zigbee2mqtt/actions/workflows/ci.yml/dispatches \
|
|
-d '{"ref":"master","inputs":{}}'
|
|
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
node: [14, 16, 17, 18]
|
|
exclude:
|
|
- os: windows-latest # https://github.com/serialport/node-serialport/issues/2344
|
|
node: 17
|
|
runs-on: ${{ matrix.os }}
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Cache node-gyp
|
|
uses: actions/cache@v3
|
|
with:
|
|
key: ${{ matrix.os }}-${{ matrix.node }}-node-gyp
|
|
path: |
|
|
/home/runner/.cache/node-gyp
|
|
C:\Users\runneradmin\AppData\Local\node-gyp
|
|
/Users/runner/Library/Caches/node-gyp
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
registry-url: https://registry.npmjs.org/
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Lint
|
|
run: npm run eslint
|
|
- name: Build
|
|
run: npm run build
|
|
- name: Test
|
|
run: npm run test-with-coverage |