[EM] Make page concatenation optional. #2333
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: XGBoost-i386-test | |
on: [push, pull_request] | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-32bit: | |
name: Build 32-bit | |
runs-on: ubuntu-latest | |
services: | |
registry: | |
image: registry:2 | |
ports: | |
- 5000:5000 | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
submodules: 'true' | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
with: | |
driver-opts: network=host | |
- name: Build and push container | |
uses: docker/build-push-action@v6 | |
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 |