summaryrefslogtreecommitdiff
path: root/.github/workflows/neozip-ci.yml
blob: 2a0532fd210bd7ca272e273cdac1cd1a3e5d6146 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
name: "neozip: CI"

on:
  workflow_dispatch:
  workflow_call:

concurrency:
  group: neozip-${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}

jobs:
  # OSB runs first — guards against wasting time on uncompilable code
  osb:
    name: OSB
    uses: ./.github/workflows/neozip-osb.yml
    secrets: inherit

  analyze:
    name: Static Analysis
    needs: osb
    uses: ./.github/workflows/neozip-analyze.yml
    secrets: inherit

  cmake:
    name: CMake
    needs: osb
    uses: ./.github/workflows/neozip-cmake.yml
    secrets: inherit

  codeql:
    name: CodeQL
    needs: osb
    uses: ./.github/workflows/neozip-codeql.yml
    secrets: inherit

  configure:
    name: Configure
    needs: osb
    uses: ./.github/workflows/neozip-configure.yml
    secrets: inherit

  libpng:
    name: Libpng
    needs: osb
    uses: ./.github/workflows/neozip-libpng.yml
    secrets: inherit

  link:
    name: Link
    needs: osb
    uses: ./.github/workflows/neozip-link.yml
    secrets: inherit

  pigz:
    name: Pigz
    needs: osb
    uses: ./.github/workflows/neozip-pigz.yml
    secrets: inherit

  pkgcheck:
    name: Package Check
    needs: osb
    uses: ./.github/workflows/neozip-pkgcheck.yml
    secrets: inherit