Saving tests and the last version for the pyroot and the C++ code for… #4
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: Software_check | |
on: | |
push: | |
pull_request: | |
types: [opened] | |
jobs: | |
py3-job: | |
runs-on: ubuntu-latest | |
container: cmscloud/al9-cms:latest | |
steps: | |
# - name: Checking_python_3.9 | |
# uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 0 | |
# - run: git clone --depth 1 https://github.com/oglez/cmsstyle.git | |
- run: | | |
python3 -V | |
ls | |
mkdir cmsstyle | |
cd cmsstyle | |
pwd | |
# python3 -m py_compile src/cmsstyle/cmsstyle.py | |
# - run: | | |
# cd src | |
# echo '{gROOT->LoadMacro("cmsstyle.C++");}' > hola.C | |
# root -q hola.C | |
# ls cmsstyle_C.sod | |
# | |
py2-job: | |
runs-on: ubuntu-latest | |
container: | |
image: cmscloud/cc7-cms:latest | |
options: --user root | |
steps: | |
# - name: Checking_python_2.7 | |
# uses: actions/checkout@v4 | |
# with: | |
# fetch-depth: 0 | |
- run: | | |
python -V | |
ls * | |
pwd | |
mkdir cmsstyle | |
cd cmsstyle | |
pwd | |
# python -m py_compile src/cmsstyle/cmsstyle.py | |
# |