Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Oct 4, 2023
1 parent c4f484e commit 0483c3d
Showing 1 changed file with 31 additions and 9 deletions.
40 changes: 31 additions & 9 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: integration

on: [push, pull_request]
on: [push]

jobs:
integration:
Expand All @@ -27,10 +27,11 @@ jobs:
run: |
cd Pilot
mkdir -p etc/grid-security
echo $HOSTCERT_BASE64 | base64 --decode > etc/grid-security/hostcert.pem
echo $HOSTKEY_BASE64 | base64 --decode > etc/grid-security/hostkey.pem
echo "$HOSTCERT_BASE64" | base64 --decode > etc/grid-security/hostcert.pem
echo "$HOSTKEY_BASE64" | base64 --decode > etc/grid-security/hostkey.pem
chmod 440 etc/grid-security/hostcert.pem
chmod 400 etc/grid-security/hostkey.pem
ls -l etc/grid-security
- name: tests
run: |
cd Pilot
Expand All @@ -45,12 +46,22 @@ jobs:
python dirac-pilot.py --modules https://github.com/DIRACGrid/DIRAC.git:::DIRAC:::${{ matrix.dirac_version }} -M 1 -S DIRAC-Certification -N jenkins.cern.ch -Q jenkins-queue_not_important -n DIRAC.Jenkins.ch --cert --certLocation=${GITHUB_WORKSPACE}/Pilot/etc/grid-security --debug
cat pilot.cfg
matching:
runs-on: ubuntu-latest

container: python:3.9.17-slim

strategy:
matrix:
python:
- 2.7.18
- 3.6.15
- 3.9.17
dirac_version:
- rel-v8r0
- integration

container: python:${{ matrix.python }}-slim

steps:
- uses: actions/checkout@v4
- name: Retrieve the secret and decode it to a file
Expand All @@ -60,8 +71,8 @@ jobs:
run: |
cd Pilot
mkdir -p etc/grid-security
echo $HOSTCERT_BASE64 | base64 --decode > etc/grid-security/hostcert.pem
echo $HOSTKEY_BASE64 | base64 --decode > etc/grid-security/hostkey.pem
echo "$HOSTCERT_BASE64" | base64 --decode > etc/grid-security/hostcert.pem
echo "$HOSTKEY_BASE64" | base64 --decode > etc/grid-security/hostkey.pem
chmod 440 etc/grid-security/hostcert.pem
chmod 400 etc/grid-security/hostkey.pem
- name: tests
Expand Down Expand Up @@ -93,12 +104,23 @@ jobs:

- name: add cvmfs
run: |
sudo apt-get install autofs
wget https://ecsft.cern.ch/dist/cvmfs/cvmfs-release/cvmfs-release-latest_all.deb
sudo dpkg -i cvmfs-release-latest_all.deb
rm -f cvmfs-release-latest_all.deb
sudo apt-get update
sudo apt-get install cvmfs
sudo cvmfs_config setup
sudo systemctl restart autofs
ls -l /etc/cvmfs
whoami
sudo touch /etc/cvmfs/default.local
ls -l /etc/cvmfs
sudo echo "CVMFS_REPOSITORIES=lhcb.cern.ch" >> /etc/cvmfs/default.local
sudo echo "CVMFS_CLIENT_PROFILE=single" >> /etc/cvmfs/default.local
ls /cvmfs/
ls /cvmfs/lhcb.cern.ch/
ls /cvmfs/lhcb.cern.ch/lhcbdirac
- name: Retrieve the secret and decode it to a file
env:
Expand All @@ -109,8 +131,8 @@ jobs:
mkdir -p etc/grid-security/vomses
mkdir -p etc/grid-security/vomsdir
mkdir -p etc/grid-security/certificates
echo $HOSTCERT_BASE64 | base64 --decode > etc/grid-security/hostcert.pem
echo $HOSTKEY_BASE64 | base64 --decode > etc/grid-security/hostkey.pem
echo "$HOSTCERT_BASE64" | base64 --decode > etc/grid-security/hostcert.pem
echo "$HOSTKEY_BASE64" | base64 --decode > etc/grid-security/hostkey.pem
chmod 440 etc/grid-security/hostcert.pem
chmod 400 etc/grid-security/hostkey.pem
- name: tests
Expand Down

0 comments on commit 0483c3d

Please sign in to comment.