diff options
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/configure.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index 2c19e60..09f67b4 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml | |||
@@ -13,12 +13,13 @@ jobs: | |||
13 | compiler: gcc | 13 | compiler: gcc |
14 | configure-args: --warn | 14 | configure-args: --warn |
15 | 15 | ||
16 | - name: Ubuntu GCC ISB | 16 | # Test out of source builds |
17 | - name: Ubuntu GCC OSB | ||
17 | os: ubuntu-latest | 18 | os: ubuntu-latest |
18 | compiler: gcc | 19 | compiler: gcc |
19 | configure-args: --warn | 20 | configure-args: --warn |
20 | build-dir: "." | 21 | build-dir: ../build |
21 | src-dir: "." | 22 | src-dir: ../zlib |
22 | 23 | ||
23 | - name: macOS GCC | 24 | - name: macOS GCC |
24 | os: macos-latest | 25 | os: macos-latest |
@@ -31,9 +32,9 @@ jobs: | |||
31 | 32 | ||
32 | - name: Generate project files | 33 | - name: Generate project files |
33 | run: | | 34 | run: | |
34 | [ -d ${{ matrix.build-dir || '../build' }} ] || mkdir ${{ matrix.build-dir || '../build' }} | 35 | [ -d ${{ matrix.build-dir || '.' }} ] || mkdir ${{ matrix.build-dir || '.' }} |
35 | cd ${{ matrix.build-dir || '../build' }} | 36 | cd ${{ matrix.build-dir || '.' }} |
36 | ${{ matrix.src-dir || '../zlib' }}/configure ${{ matrix.configure-args }} | 37 | ${{ matrix.src-dir || '.' }}/configure ${{ matrix.configure-args }} |
37 | env: | 38 | env: |
38 | CC: ${{ matrix.compiler }} | 39 | CC: ${{ matrix.compiler }} |
39 | 40 | ||