mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
CI/CD: Add 32-bit build and test steps to Ubuntu autotools runner.
If all goes well, Mac autotools and Linux and Mac CMake will be added later for 32-bit builds.
This commit is contained in:
parent
923eb689a4
commit
57464bb4eb
1 changed files with 6 additions and 1 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Dependencies
|
||||
run: sudo apt-get install -y autoconf automake build-essential po4a autopoint
|
||||
run: sudo apt-get install -y autoconf automake build-essential po4a autopoint gcc-multilib
|
||||
|
||||
# -b specifies the build system to use.
|
||||
# -p specifies the phase (build or test) to help narrow down an error
|
||||
|
@ -75,6 +75,11 @@ jobs:
|
|||
- name: Test without crc64 check
|
||||
run: ./build-aux/ci_build.sh -b autotools -c crc32,sha256 -p test
|
||||
|
||||
- name: Build 32-bit
|
||||
run: ./build-aux/ci_build.sh -b autotools -p build -f "-m32"
|
||||
- name: Test 32-bit
|
||||
run: ./build-aux/ci_build.sh -b autotools -p test -f "-m32"
|
||||
|
||||
Linux-CMake:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue