v490.5-dev1 #379
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: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request | |
# events but only for the main branch | |
pull_request: | |
branches: [main, master] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
root: | |
- "rootproject/root:latest" | |
#- "rootproject/root:6.20.08-ubuntu20.04" | |
#- "rootproject/root:6.24.06-arch" | |
#- "rootproject/root:6.22.06-fedora33" | |
#- "rootproject/root:6.22.08-centos7" | |
runs-on: ${{ matrix.os }} | |
container: ${{ matrix.root }} | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE | |
- uses: actions/checkout@v3 | |
# Runs a set of commands using the runners shell | |
- name: build | |
run: | | |
root-config --version | |
export EVNDISPSYS=$(echo $GITHUB_WORKSPACE) | |
export SOFASYS=${EVNDISPSYS}/sofa | |
./install_sofa.sh CI | |
make config | |
make VTS |