aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/compliance.yml
blob: 35e47310a0b8143d71ae6ed4fd766c03ca56dc20 (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
# SPDX-FileCopyrightText: Andrei Gherzan <andrei.gherzan@huawei.com>
#
# SPDX-License-Identifier: MIT

name: Compliance

on:
  pull_request:

jobs:
  dco:
    name: DCO
    runs-on: [self-hosted, Linux]
    steps:
      - name: Checkout the code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Build a temporary DCO image
        uses: ./.github/actions/docker-build
        with:
          docker_image: dco-check
          id: ${{ github.event.number }}
      - name: Do DCO check
        run: |
          docker run --rm -v "$GITHUB_WORKSPACE:/work:ro" \
            --env "BASE_REF=$GITHUB_BASE_REF" \
            "dco-check-${{ github.event.number }}"
      - name: Cleanup temporary docker image
        uses: ./.github/actions/docker-clean-image
        with:
          docker_image: dco-check-${{ github.event.number }}
        if: always()
      - name: Cleanup dangling docker images
        uses: ./.github/actions/docker-clean-dangling
        if: always()
  reuse:
    name: reuse
    runs-on: [self-hosted, Linux]
    steps:
      - name: Checkout the code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0
      - name: Do reuse check
        continue-on-error: true
        uses: fsfe/reuse-action@v1