summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
blob: 4b5bb1f193022c4aafd7f014e8c37dcd65cacf5f (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
name: CI
on:
  push:
    branches:
      - master
    tags:
      - "v*"
  pull_request:
jobs:
  linux:
    strategy:
      fail-fast: false
      matrix:
        compiler: [gcc, clang]
        image: [ubuntu-20.04, ubuntu-22.04]
    runs-on: ${{ matrix.image }}
    env:
      CC: ${{ matrix.compiler }}
      SUFFIX: linux-${{ matrix.image}}-${{ matrix.compiler }}
    steps:
      - name: Clone repository
        uses: actions/checkout@v3
        with:
          submodules: true
      - name: Install packages
        run: |
          sudo apt-get update -qq
          sudo apt-get install -y \
            automake \
            autoconf \
            bison \
            flex \
            gdb \
            python3
      - name: Build
        run: |
          autoreconf -fi
          ./configure --disable-dependency-tracking \
            --disable-silent-rules \
            --disable-maintainer-mode \
            --disable-valgrind \
            --with-oniguruma=builtin \
            YACC="$(which bison) -y"
          make
      - name: Test
        run: |
          make check
      - name: Upload Test Logs
        if: ${{ failure() }}
        uses: actions/upload-artifact@v3
        with:
          name: test-logs-${{ env.SUFFIX }}
          retention-days: 7
          path: |
            test-suite.log
            tests/*.log
      - name: Upload Artifacts
        uses: actions/upload-artifact@v3
        with:
          name: jq-${{ env.SUFFIX }}
          if-no-files-found: error
          retention-days: 7
          path: |
            jq
  macos:
    strategy:
      fail-fast: false
      matrix:
        compiler: [gcc, clang]
        image: [macos-11, macos-12, macos-13]
    runs-on: ${{ matrix.image }}
    env:
      CC: ${{ matrix.compiler }}
      SUFFIX: macos-${{ matrix.image}}-${{ matrix.compiler }}
    steps:
      - name: Clone repository
        uses: actions/checkout@v3
        with:
          submodules: true
      - name: Install packages
        run: |
          # brew update sometimes fails with "Fetching /usr/local/Homebrew/Library/Taps/homebrew/homebrew-cask failed!"
          brew update || brew update-reset
          brew install \
            autoconf \
            automake \
            libtool \
            flex \
            bison
          sed -i.bak '/^AM_INIT_AUTOMAKE(\[-Wno-portability 1\.14\])$/s/14/11/' modules/oniguruma/configure.ac
      - name: Build
        run: |
          autoreconf -fi
          ./configure --disable-dependency-tracking \
            --disable-silent-rules \
            --disable-maintainer-mode \
            --disable-valgrind \
            --with-oniguruma=builtin \
            YACC="$(brew --prefix)/opt/bison/bin/bison -y"
          make
      - name: Test
        run: |
          make check
      - name: Upload Test Logs
        if: ${{ failure() }}
        uses: actions/upload-artifact@v3
        with:
          name: test-logs-${{ env.SUFFIX }}
          retention-days: 7
          path: |
            test-suite.log
            tests/*.log
      - name: Upload Artifacts
        uses: actions/upload-artifact@v3
        with:
          name: jq-${{ env.SUFFIX }}
          if-no-files-found: error
          retention-days: 7
          path: |
            jq
  windows:
    strategy:
      fail-fast: false
      matrix:
        compiler: [gcc]
        image: [windows-2019, windows-2022]
    runs-on: ${{ matrix.image }}
    env:
      CC: ${{ matrix.compiler }}
      SUFFIX: windows-${{ matrix.image}}-${{ matrix.compiler }}
    steps:
      - name: Clone repository
        uses: actions/checkout@v3
        with:
          submodules: true
      - uses: msys2/setup-msys2@v2
        with:
          update: true
          install: >-
            base-devel
            git
            clang
            autoconf
            automake
            libtool
            bison
            flex
      - name: Build
        shell: msys2 {0}
        run: |
          autoreconf -fi
          ./configure --disable-dependency-tracking \
            --disable-silent-rules \
            --disable-maintainer-mode \
            --disable-valgrind \
            --with-oniguruma=builtin \
            --disable-shared \
            --enable-static \
            --enable-all-static \
            YACC="$(which bison) -y"
          make
      - name: Test
        shell: msys2 {0}
        run: |
          make check
      - name: Upload Test Logs
        if: ${{ failure() }}
        uses: actions/upload-artifact@v3
        with:
          name: test-logs-${{ env.SUFFIX }}
          retention-days: 7
          path: |
            test-suite.log
            tests/*.log
      - name: Upload Artifacts
        uses: actions/upload-artifact@v3
        with:
          name: jq-${{ env.SUFFIX }}
          if-no-files-found: error
          retention-days: 7
          path: |
            jq.exe
  release:
    runs-on: ubuntu-latest
    permissions:
      contents: write
    needs: [linux, macos, windows]
    if: startsWith(github.event.ref, 'refs/tags/v')
    steps:
      - name: Clone repository
        uses: actions/checkout@v3
        with:
          submodules: true
      - name: Merge built artifacts
        uses: actions/download-artifact@v3
        with:
          path: artifacts
      - name: Upload release
        env:
          TAG_NAME: ${{ github.ref_name }}
          GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        run: |
          mkdir release
          cp artifacts/jq-linux-ubuntu-22.04-gcc/jq release/jq-linux-amd64
          cp artifacts/jq-macos-macos-13-gcc/jq release/jq-macos-amd64
          cp artifacts/jq-windows-windows-2022-gcc/jq.exe release/jq-windows-amd64.exe

          gh release create $TAG_NAME --draft --title "jq ${TAG_NAME#v}" --generate-notes
          gh release upload $TAG_NAME --clobber release/jq-*