Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/actions/pre-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,20 @@ runs:


- name: mount cvmfs
run: |
run: |
if [ "${{ matrix.os }}" == "debian10" ]; then
sed -i 's|http://deb.debian.org/debian|http://archive.debian.org/debian|g' /etc/apt/sources.list
sed -i '/deb.debian.org/d' /etc/apt/sources.list
echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/99no-check-valid-until
fi
apt-get update
apt-get install --fix-missing -y sudo
apt-get install --fix-missing -y sudo wget gnupg lsb-release
if [ "${{ matrix.os }}" == "debian10" ]; then
sudo apt upgrade libc6
fi
sudo -H pip3 install --ignore-installed -U conan
wget https://cernbox.cern.ch/remote.php/dav/public-files/RmnTeeOZpYjCJQb/masterkey.gsi.de.pub
mkdir -p /etc/cvmfs/keys
mv masterkey.gsi.de.pub /etc/cvmfs/keys
cp .github/config/fairsoft.gsi.de.conf /etc/cvmfs/config.d
echo "CVMFS_USER=$(whoami)" >> /etc/cvmfs/config.d/fairsoft.gsi.de.conf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# Here are the groups of repositories that need to be downloaded inside
# r3broot. Each group is used by only one job.
repos: [ sofia ]
os: [ debian11, debian12 ]
os: [ debian10, debian11, debian12 ]
# The list under "include" defines some properties for each group:
#
# repos: the name of the group. It must exist in matrix.repos as
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
# tool-kits for the building, such as clang-tidy and cvmfs. For more
# information, please visit the Docker repository at Dockerhub.
container:
image: yanzhaowang/cvmfs_clang:${{ matrix.os }}
image: r3bdockers/${{ matrix.os }}
volumes:
- /tmp:/cvmfs
env:
Expand Down
154 changes: 0 additions & 154 deletions .github/workflows/maindeb10.yml

This file was deleted.

Loading