Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do NOT explicitly install libfuse2t64 -- not present on 24.04 to which GHA switched recently #208

Closed
wants to merge 2 commits into from
Closed
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
5 changes: 2 additions & 3 deletions .github/workflows/build-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ jobs:
codename="$(lsb_release -cs)"
arch="$(dpkg --print-architecture)"
cd /tmp
sudo apt-get install libfuse2t64
wget -O singularity-ce.deb https://github.com/sylabs/singularity/releases/download/$release/singularity-ce_${release#v}-${codename}_$arch.deb
sudo dpkg -i singularity-ce.deb || :
sudo apt-get install -f
Expand Down Expand Up @@ -131,8 +130,8 @@ jobs:
if ! singularity exec /tmp/buildenv.sif \
bash -c "set -x; export LANG=C; dpkg-source -x *.dsc git-annex-source && cd git-annex-source && dpkg-buildpackage -b $opts" >| "${bbuild_log}" 2>&1; then
echo "E: build failed"
echo "I: the tail of the log"
tail -n 50 "${bbuild_log}"
echo "I: log:"
cat "${bbuild_log}"
echo "I: FAIL line matches with some context"
grep -B10 '^FAIL$' "${bbuild_log}"
exit 1
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/template/build-{{ostype}}.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
codename="$(lsb_release -cs)"
arch="$(dpkg --print-architecture)"
cd /tmp
sudo apt-get install libfuse2t64
wget -O singularity-ce.deb https://github.com/sylabs/singularity/releases/download/$release/singularity-ce_${release#v}-${codename}_$arch.deb
sudo dpkg -i singularity-ce.deb || :
sudo apt-get install -f
Expand Down
Loading