summaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker-dummy.yml
blob: 64131dac569fdc46838df243f72cf5eb21f80212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: Docker
on:
  pull_request:
    paths-ignore: # This MUST be kept in-sync with the paths key for the dummy.yml workflow.
      - '**.c'
      - '**.cc'
      - '**.h'
      - '**.hh'
      - '**.in'
      - '!netdata.spec.in'
      - '.dockerignore'
      - 'configure.ac'
      - 'netdata-installer.sh'
      - '**/Makefile*'
      - 'Makefile*'
      - '.github/workflows/docker.yml'
      - '.github/scripts/docker-test.sh'
      - 'build/**'
      - 'packaging/docker/**'
      - 'packaging/installer/**'
      - 'aclk/aclk-schemas/'
      - 'ml/dlib/'
      - 'mqtt_websockets'
      - 'web/server/h2o/libh2o'
      - '!**.md'
env:
  DISABLE_TELEMETRY: 1
concurrency:
  group: docker-${{ github.ref }}-${{ github.event_name }}
  cancel-in-progress: true
jobs:
  docker-test:
    name: Docker Runtime Test
    runs-on: ubuntu-latest
    steps:
      - run: echo 'NOT REQUIRED'

  docker-ci:
    name: Docker Alt Arch Builds
    needs: docker-test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        platforms:
          - linux/i386
          - linux/arm/v7
          - linux/arm64
          - linux/ppc64le
    steps:
      - run: echo 'NOT REQUIRED'