debugging CI #59
Workflow file for this run
This file contains hidden or 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: Docker Image CI | |
| on: | |
| push: | |
| branches: [ try_CI ] | |
| pull_request: | |
| branches: [ try_CI ] | |
| env: | |
| current_branch: $(echo ${{ github.ref }} | sed -E 's|refs/[a-zA-Z]+/||') | |
| current_user: ${{ github.actor }} | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Take a look around | |
| run: pwd && ls -alh | |
| - name: Run a CVMFS Docker image and run the setup script | |
| run: docker run -t -P --device /dev/fuse --cap-add SYS_ADMIN --security-opt apparmor:unconfined -e CVMFS_MOUNTS="cms.cern.ch" --entrypoint "/bin/bash" aperloff/cms-cvmfs-docker:light -c "/run.sh -c \"cat /run.sh && cat /mount_cvmfs.sh && ls -la && ls -la / && ls -la /cvmfs/cms.cern.ch/ && wget https://raw.githubusercontent.com/DisplacedVertices/cmssw-usercode/UL_Lepton/initial_setup.sh && chmod +x initial_setup.sh && source initial_setup.sh \" && cvmfs_config wipecache" |