Skip to content

[RNTuple] RNTuple fixing up to spec v1 and also complete writing #222

[RNTuple] RNTuple fixing up to spec v1 and also complete writing

[RNTuple] RNTuple fixing up to spec v1 and also complete writing #222

Workflow file for this run

name: Test C++ ROOT read back
on:
pull_request:
branches:
- main
push:
branches:
- main
tags: '*'
jobs:
test:
name: C++ ROOT read back rntuple files ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allow_failure }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04]
arch: [x64]
allow_failure: [false]
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32 # v3.0.2
with:
version: '1'
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38 # v3.1.0
- uses: julia-actions/julia-buildpkg@e3eb439fad4f9aba7da2667e7510e4a46ebc46e1 # v1.7.0
- name: Generate root file
run: |
julia --code-coverage --project ./test/RNTupleWriting/output_sample.jl test1.root
- uses: cvmfs-contrib/github-action-cvmfs@10197e000cc0add8e54ac4fb73d3ed44e2de72b4 # v5.5
- name: Read root file in C++
run: |
source /cvmfs/sft.cern.ch/lcg/views/dev3/latest/x86_64-ubuntu2204-gcc11-opt/setup.sh
python ./test/RNTupleWriting/test1.py test1.root
- uses: julia-actions/julia-processcoverage@03114f09f119417c3242a9fb6e0b722676aedf38 # v1.2.2
- uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
file: lcov.info