|
21 | 21 | pkg: "gcc g++" |
22 | 22 | - id: "distcheck-debian-stable-amd64-gcc" |
23 | 23 | task: "distcheck" |
24 | | - configure-args: "--enable-ja-rule --enable-e133 --enable-rdm-tests --enable-java-libs" |
| 24 | + configure-args: "--enable-ja-rule --enable-e133 --enable-rdm-tests" |
25 | 25 | # TODO(Perry): Fix Debian 12 OOM issue on GitHub Actions |
26 | 26 | container: "debian:stable" |
27 | 27 | compiler: |
|
30 | 30 | pkg: "gcc g++" |
31 | 31 | - id: "distcheck-debian-stable-amd64-clang" |
32 | 32 | task: "distcheck" |
33 | | - configure-args: "--enable-ja-rule --enable-e133 --enable-rdm-tests --enable-java-libs" |
| 33 | + configure-args: "--enable-ja-rule --enable-e133 --enable-rdm-tests" |
34 | 34 | # TODO(Perry): Fix Debian 12 OOM issue on GitHub Actions |
35 | 35 | container: "debian:stable" |
36 | 36 | compiler: |
@@ -90,17 +90,18 @@ jobs: |
90 | 90 | - name: Autoreconf |
91 | 91 | run: sudo --preserve-env -u builduser env "PATH=$PATH" autoreconf -i |
92 | 92 | - name: Set configure arguments |
| 93 | + # Env var name DISTCHECK_CONFIGURE_FLAGS must be used, see #1881 and #1883 |
93 | 94 | run: | |
94 | | - echo "GH_OLA_CONFIGURE_ARGS=${{ matrix.configure-args }}" >> $GITHUB_ENV |
| 95 | + echo "DISTCHECK_CONFIGURE_FLAGS=${{ matrix.configure-args }}" >> $GITHUB_ENV |
95 | 96 | - name: Set additional Linux configure arguments |
96 | 97 | if: runner.os == 'Linux' |
97 | 98 | # Silence all deprecated declarations on Linux due to auto_ptr making the build log too long |
98 | 99 | run: | |
99 | | - echo "GH_OLA_CONFIGURE_ARGS=$GH_OLA_CONFIGURE_ARGS CPPFLAGS=-Wno-deprecated-declarations" >> $GITHUB_ENV |
| 100 | + echo "DISTCHECK_CONFIGURE_FLAGS=$DISTCHECK_CONFIGURE_FLAGS CPPFLAGS=-Wno-deprecated-declarations" >> $GITHUB_ENV |
100 | 101 | - name: Print configure command |
101 | | - run: echo "./configure $GH_OLA_CONFIGURE_ARGS" |
| 102 | + run: echo "./configure $DISTCHECK_CONFIGURE_FLAGS" |
102 | 103 | - name: Configure |
103 | | - run: sudo --preserve-env -u builduser env "PATH=$PATH" ./configure $GH_OLA_CONFIGURE_ARGS |
| 104 | + run: sudo --preserve-env -u builduser env "PATH=$PATH" ./configure $DISTCHECK_CONFIGURE_FLAGS |
104 | 105 | - name: ${{ matrix.task }} |
105 | 106 | run: sudo --preserve-env -u builduser env "PATH=$PATH" make ${{ matrix.task }} -j${{ steps.num-cpu-cores.outputs.NUM_CPU_CORES }} VERBOSE=1 |
106 | 107 | - name: Display structure of the built files |
|
0 commit comments