* [CI] Test building for 32-bit arch * Update CMakeLists.txt * Fix yaml * Use Debian container * Remove -Werror for 32-bit * Revert "Remove -Werror for 32-bit" This reverts commit c652bc6a037361bcceaf56fb01863210b462793d. * Don't error for overloaded-virtual warning * Ignore some warnings from dmlc-core * Fix compiler warnings * Fix formatting * Apply suggestions from code review Co-authored-by: Jiaming Yuan <jm.yuan@outlook.com> * Add more cast --------- Co-authored-by: Jiaming Yuan <jm.yuan@outlook.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: XGBoost-i386-test
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
build-32bit:
|
|
name: Build 32-bit
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
registry:
|
|
image: registry:2
|
|
ports:
|
|
- 5000:5000
|
|
steps:
|
|
- uses: actions/checkout@v2.5.0
|
|
with:
|
|
submodules: 'true'
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver-opts: network=host
|
|
- name: Build and push container
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: tests/ci_build/Dockerfile.i386
|
|
push: true
|
|
tags: localhost:5000/xgboost/build-32bit:latest
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
- name: Build XGBoost
|
|
run: |
|
|
docker run --rm -v $PWD:/workspace -w /workspace \
|
|
-e CXXFLAGS='-Wno-error=overloaded-virtual -Wno-error=maybe-uninitialized -Wno-error=redundant-move' \
|
|
localhost:5000/xgboost/build-32bit:latest \
|
|
tests/ci_build/build_via_cmake.sh
|