-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (62 loc) · 2.42 KB
/
windows_ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: CI - Windows CPU
on:
workflow_dispatch: # allows triggering the workflow run manually
env:
DISTUTILS_USE_SDK: 1
MSSdk: 1
jobs:
win-wheels:
strategy:
fail-fast: true
matrix:
os: [windows-2019]
arch: [AMD64]
pyver: ['3.9']
name: ${{ matrix.os }} CI build
runs-on: ${{ matrix.os }}
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # ratchet: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Install LLVM/Clang
run: choco install llvm --version=18.1.4 --yes
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v4
with:
repository: vladbelit/jax
ref: win_clang
path: jax
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # ratchet:actions/checkout@v4
with:
repository: openxla/xla
path: xla
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # ratchet:actions/setup-python@v5
with:
python-version: ${{ matrix.pyver }}
cache: 'pip'
- name: Build wheels
env:
USE_BAZEL_VERSION: 6.5.0 # https://github.com/bazelbuild/bazel/issues/17863
BAZEL_VC: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Enterprise\\VC"
JAXLIB_NIGHTLY: true # Tag the wheels as dev versions
run: |
cd jax
python -m pip install -r build/test-requirements.txt
python -m pip uninstall -y matplotlib
python -m pip install --pre --upgrade numpy==2.0.0rc1 scipy==1.13.0
"C:\\msys64\\;C:\\msys64\\usr\\bin\\;" >> $env:GITHUB_PATH
python.exe build\build.py `
('--bazel_options=--override_repository=xla=${{ github.workspace }}\xla' -replace '\\','\\') `
--bazel_options=--color=yes `
--bazel_command_options=--config=win_clang
- name: Run tests
env:
JAX_ENABLE_CHECKS: true
JAX_SKIP_SLOW_TESTS: true
PY_COLORS: 1
run: |
cd jax
python -m pip install -e ${{ github.workspace }}\jax
python -m pip install --no-index --find-links ${{ github.workspace }}\jax\dist jaxlib
echo "JAX_ENABLE_CHECKS=$JAX_ENABLE_CHECKS"
pytest -n auto --tb=short tests examples