feat: initial IFRT integration #3224
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: CI | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/CI.yml' | |
- 'deps/**' | |
- 'ext/**' | |
- 'lib/**' | |
- 'src/**' | |
- 'test/**' | |
- 'Project.toml' | |
push: | |
branches: | |
- main | |
- release-* | |
tags: '*' | |
paths: | |
- '.github/workflows/CI.yml' | |
- 'deps/**' | |
- 'ext/**' | |
- 'lib/**' | |
- 'src/**' | |
- 'test/**' | |
- 'Project.toml' | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
timeout-minutes: 90 | |
name: Julia ${{ matrix.version }} - ${{ matrix.test_group }} - ${{ matrix.os }} - ${{ matrix.libReactant }} libReactant - assertions=${{ matrix.assertions }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- '1.10' | |
- '1.11' | |
# - 'nightly' | |
os: | |
- ubuntu-24.04 | |
# `ubuntu-22.04-arm` is considered more stable than `ubuntu-24.04-arm`: | |
# <https://github.com/orgs/community/discussions/148648#discussioncomment-12099554>. | |
- ubuntu-22.04-arm | |
- macOS-13 | |
- macOS-latest | |
test_group: | |
- core | |
- neural_networks | |
- integration | |
assertions: | |
- false | |
libReactant: [packaged] | |
include: | |
- os: ubuntu-24.04 | |
libReactant: packaged | |
version: '1.10' | |
assertions: true | |
test_group: core | |
- os: ubuntu-24.04 | |
libReactant: packaged | |
version: '1.10' | |
assertions: true | |
test_group: neural_networks | |
- os: ubuntu-24.04 | |
libReactant: packaged | |
version: '1.10' | |
assertions: true | |
test_group: integration | |
# - os: ubuntu-24.04 | |
# libReactant: packaged | |
# version: '1.10' | |
# test_group: core | |
# - os: ubuntu-24.04 | |
# libReactant: packaged | |
# version: '1.10' | |
# test_group: neural_networks | |
# - os: ubuntu-24.04 | |
# libReactant: packaged | |
# version: '1.10' | |
# test_group: integration | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
if: ${{ ! matrix.assertions }} | |
with: | |
version: ${{ matrix.version }} | |
- uses: julia-actions/cache@v2 | |
- uses: actions/checkout@v4 | |
if: ${{ matrix.assertions }} | |
with: | |
repository: 'JuliaLang/julia' | |
ref: release-${{ matrix.version }} | |
path: 'julia' | |
- name: Compile Julia | |
if: ${{ matrix.assertions }} | |
run: | | |
sed -i.bak 's/exit 2/exit 0/g' julia/deps/tools/jlchecksum | |
make -C julia -j $(nproc) FORCE_ASSERTIONS=1 LLVM_ASSERTIONS=1 JULIA_PRECOMPILE=0 | |
echo $PWD/julia/usr/bin >> $GITHUB_PATH | |
- name: Build libReactant | |
if: ${{ matrix.libReactant == 'local' && !startsWith(matrix.os, 'macOS-') }} | |
id: build_libreactant | |
run: | | |
python -m pip install numpy | |
julia --color=yes --project=deps -e 'using Pkg; Pkg.instantiate()' | |
julia --color=yes --project=deps deps/build_local.jl | |
cp LocalPreferences.toml test/ | |
- name: Build libReactant MacOS | |
if: ${{ matrix.libReactant == 'local' && !startsWith(matrix.os, 'macOS-') }} | |
id: build_libreactant_mac | |
run: | | |
python -m pip install numpy | |
julia --color=yes --project=deps -e 'using Pkg; Pkg.instantiate()' | |
SDKROOT=`xcrun --show-sdk-path` julia --color=yes --project=deps deps/build_local.jl | |
cp LocalPreferences.toml test/ | |
- name: "Install Dependencies" | |
run: | | |
import Pkg | |
Pkg.Registry.update() | |
# Install packages present in subdirectories | |
dev_pks = Pkg.PackageSpec[] | |
for path in ("lib/ReactantCore",) | |
push!(dev_pks, Pkg.PackageSpec(; path)) | |
end | |
Pkg.develop(dev_pks) | |
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=. {0} | |
# Only in Julia v1.10 we need to install `ReactantCore` manually. | |
if: ${{ matrix.version == '1.10' }} | |
env: | |
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager | |
- name: "Run Tests" | |
run: | | |
import Pkg | |
Pkg.Registry.update() | |
Pkg.test(; coverage="user") | |
shell: julia --color=yes --code-coverage=user --depwarn=yes --project=. {0} | |
id: run_tests | |
env: | |
JULIA_PKG_SERVER_REGISTRY_PREFERENCE: eager | |
REACTANT_TEST_GROUP: ${{ matrix.test_group }} | |
XLA_FLAGS: "--xla_force_host_platform_device_count=8" | |
- uses: julia-actions/julia-processcoverage@v1 | |
if: steps.run_tests.outcome == 'success' | |
- uses: codecov/codecov-action@v5 | |
if: steps.run_tests.outcome == 'success' | |
with: | |
files: lcov.info |