Skip to content

Add Dockerfile for s390x (#217) #823

Add Dockerfile for s390x (#217)

Add Dockerfile for s390x (#217) #823

Workflow file for this run

name: Open-CE XGBoost Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/[email protected]
with:
auto-update-conda: false
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash -l {0}
run: |
pip install .
- name: Build XGBoost
shell: bash -l {0}
# yamllint disable rule:line-length
run: |
open-ce build env xgboost-env \
--container_build \
--python_versions ${{ matrix.python-version }} \
--build_types cpu
# yamllint enable rule:line-length