summaryrefslogtreecommitdiffstats
path: root/.github/workflows/oniguruma.yml
blob: ebe471debbe44843d67a7d64e63b3a68090c7439 (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
name: oniguruma
on:
  push:
    branches:
      - master
  pull_request:

# Since builtin oniguruma is tested in the CI workflow,
# we test other options for --with-oniguruma here.
jobs:
  installed:
    runs-on: ubuntu-22.04
    steps:
      - name: Clone repository
        uses: actions/checkout@v4
      - name: Install packages
        run: |
          sudo apt-get update
          sudo apt-get install -y automake autoconf libtool valgrind libonig-dev
      - name: Build
        run: |
          autoreconf -i
          ./configure \
            --disable-docs \
            --with-oniguruma=yes
          make -j"$(nproc)"
          file ./jq
      - name: Test
        run: |
          ./jq -n '"" | test("")'
          make check VERBOSE=yes
          git diff --exit-code
      - name: Upload Test Logs
        if: ${{ failure() }}
        uses: actions/upload-artifact@v4
        with:
          name: test-logs-oniguruma-installed
          retention-days: 7
          path: |
            test-suite.log
            tests/*.log

  disabled:
    runs-on: ubuntu-22.04
    steps:
      - name: Clone repository
        uses: actions/checkout@v4
      - name: Install packages
        run: |
          sudo apt-get update
          sudo apt-get install -y automake autoconf libtool valgrind
      - name: Build
        run: |
          autoreconf -i
          ./configure \
            --disable-docs \
            --with-oniguruma=no
          make -j"$(nproc)"
          file ./jq
      - name: Test
        run: |
          ! ./jq -n '"" | test("")'
          make check VERBOSE=yes
          git diff --exit-code
      - name: Upload Test Logs
        if: ${{ failure() }}
        uses: actions/upload-artifact@v4
        with:
          name: test-logs-oniguruma-disabled
          retention-days: 7
          path: |
            test-suite.log
            tests/*.log