2022-10-07 07:50:16 +03:00
|
|
|
name: Configure
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
ci-configure:
|
|
|
|
name: ${{ matrix.name }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- name: Ubuntu GCC
|
|
|
|
os: ubuntu-latest
|
|
|
|
compiler: gcc
|
|
|
|
configure-args: --warn
|
|
|
|
|
2022-10-11 04:38:33 +03:00
|
|
|
# Test out of source builds
|
|
|
|
- name: Ubuntu GCC OSB
|
2022-10-07 07:50:16 +03:00
|
|
|
os: ubuntu-latest
|
|
|
|
compiler: gcc
|
|
|
|
configure-args: --warn
|
2022-10-11 04:38:33 +03:00
|
|
|
build-dir: ../build
|
|
|
|
src-dir: ../zlib
|
2022-10-07 07:50:16 +03:00
|
|
|
|
2022-10-11 21:08:38 +03:00
|
|
|
- name: Ubuntu GCC ARM SF
|
|
|
|
os: ubuntu-latest
|
|
|
|
compiler: arm-linux-gnueabi-gcc
|
|
|
|
configure-args: --warn
|
|
|
|
chost: arm-linux-gnueabi
|
|
|
|
packages: qemu qemu-user gcc-arm-linux-gnueabi libc-dev-armel-cross
|
|
|
|
qemu-run: qemu-arm -L /usr/arm-linux-gnueabi
|
|
|
|
|
|
|
|
- name: Ubuntu GCC ARM HF
|
|
|
|
os: ubuntu-latest
|
|
|
|
compiler: arm-linux-gnueabihf-gcc
|
|
|
|
configure-args: --warn
|
|
|
|
chost: arm-linux-gnueabihf
|
|
|
|
packages: qemu qemu-user gcc-arm-linux-gnueabihf libc-dev-armhf-cross
|
|
|
|
qemu-run: qemu-arm -L /usr/arm-linux-gnueabihf
|
|
|
|
|
|
|
|
- name: Ubuntu GCC AARCH64
|
|
|
|
os: ubuntu-latest
|
|
|
|
compiler: aarch64-linux-gnu-gcc
|
|
|
|
configure-args: --warn
|
|
|
|
chost: aarch64-linux-gnu
|
|
|
|
packages: qemu qemu-user gcc-aarch64-linux-gnu libc-dev-arm64-cross
|
|
|
|
qemu-run: qemu-aarch64 -L /usr/aarch64-linux-gnu
|
|
|
|
|
2022-10-07 07:50:16 +03:00
|
|
|
- name: macOS GCC
|
|
|
|
os: macos-latest
|
|
|
|
compiler: gcc-9
|
|
|
|
configure-args: --warn
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-10-11 21:08:38 +03:00
|
|
|
- name: Install packages (Ubuntu)
|
|
|
|
if: runner.os == 'Linux' && matrix.packages
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y ${{ matrix.packages }}
|
|
|
|
|
2022-10-07 07:50:16 +03:00
|
|
|
- name: Generate project files
|
|
|
|
run: |
|
2022-10-11 04:38:33 +03:00
|
|
|
[ -d ${{ matrix.build-dir || '.' }} ] || mkdir ${{ matrix.build-dir || '.' }}
|
|
|
|
cd ${{ matrix.build-dir || '.' }}
|
|
|
|
${{ matrix.src-dir || '.' }}/configure ${{ matrix.configure-args }}
|
2022-10-07 07:50:16 +03:00
|
|
|
env:
|
|
|
|
CC: ${{ matrix.compiler }}
|
2022-10-11 21:08:38 +03:00
|
|
|
CHOST: ${{ matrix.chost }}
|
2022-10-07 07:50:16 +03:00
|
|
|
|
|
|
|
- name: Compile source code
|
|
|
|
run: make -j2
|
|
|
|
working-directory: ${{ matrix.build-dir }}
|
|
|
|
|
|
|
|
- name: Run test cases
|
2022-10-11 04:40:09 +03:00
|
|
|
run: |
|
|
|
|
make test
|
|
|
|
make cover
|
2022-10-07 07:50:16 +03:00
|
|
|
working-directory: ${{ matrix.build-dir }}
|
2022-10-11 04:39:14 +03:00
|
|
|
|
|
|
|
- name: Upload build errors
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: ${{ matrix.name }} (configure)
|
|
|
|
path: |
|
|
|
|
${{ matrix.build-dir || '.' }}/configure.log
|
|
|
|
retention-days: 7
|