summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/cmetrics/.github/workflows/packages.yaml
blob: 41e913ec8fd8fe1e10ff34d18de20c2297708ecb (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: Build packages for master or a tagged release

on:
  push:
    branches:
      - master
    # Any tag starting with 'v'
    tags:
      - 'v*'
  workflow_dispatch:

jobs:
  build-distro-packages-arm64:
    runs-on: ubuntu-latest
    name: build arm64 packages
    strategy:
      fail-fast: true
      matrix:
        format: [ rpm, deb ]
    steps:
      - uses: actions/checkout@v3
        with:
          submodules: true

      - uses: uraimo/run-on-arch-action@v2.3.0
        name: Build the ${{matrix.format}} packages
        with:
          arch: aarch64
          distro: ubuntu20.04
          run: |
            apt-get update && \
            apt-get install -y --no-install-recommends \
            build-essential \
            cmake \
            file \
            rpm \
            make
            cmake .
            echo ${{ matrix.format }} | awk '{print toupper($0)}' | xargs -I{} cpack -G {}

      - name: Store the master package artifacts
        uses: actions/upload-artifact@v3
        with:
          name: ${{ matrix.format }}-arm64
          path: |
            ./*.${{matrix.format}}

  build-distro-packages-amd64:
    name: build amd64 packages
    strategy:
      fail-fast: true
      matrix:
        format: [ rpm, deb ]
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          submodules: true

      - name: Build the ${{matrix.format}} packages
        run:  |
          cmake .
          echo ${{ matrix.format }} | awk '{print toupper($0)}' | xargs -I{} cpack -G {}

      - name: Store the master package artifacts
        uses: actions/upload-artifact@v3
        with:
          name: ${{ matrix.format }}-amd64
          path: |
            ./*.${{matrix.format}}

  release:
    name: Create release and upload packages
    needs:
      - build-distro-packages-amd64
      - build-distro-packages-arm64
    runs-on: ubuntu-latest
    permissions:
      contents: write
    steps:
      - name: Download all artefacts
        uses: actions/download-artifact@v3
        with:
          path: artifacts/

      - name: Display structure of downloaded files
        run: ls -R
        working-directory: artifacts
        shell: bash

      - name: Unstable release on push to master to make it easier to download
        uses: pyTooling/Actions/releaser@r0
        continue-on-error: true
        with:
          token: ${{ secrets.GITHUB_TOKEN }}
          tag: 'unstable'
          rm: true
          files: |
            artifacts/**/*

      - name: Release on tag
        uses: softprops/action-gh-release@v1
        if: startsWith(github.ref, 'refs/tags/')
        with:
          generate_release_notes: true
          draft: false
          files: |
            artifacts/**/*