Skip to content

Commit

Permalink
package/ci: work around expired certificate error on SourceForge.
Browse files Browse the repository at this point in the history
Interestingly, happens only on CircleCI, not locally.
  • Loading branch information
mosra committed Oct 3, 2021
1 parent 7f15e26 commit a7a8b43
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package/ci/emscripten.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ cd ../..

# Crosscompile FAAD2. Basically a copy of the emscripten-faad2 PKGBUILD from
# https://github.com/mosra/archlinux.
wget https://downloads.sourceforge.net/sourceforge/faac/faad2-2.8.8.tar.gz
# As of 2021-09-30, CircleCI fails with an "expired certificate" error, so we
# explicitly disable the certificate check.
wget --no-check-certificate https://downloads.sourceforge.net/sourceforge/faac/faad2-2.8.8.tar.gz
tar -xzvf faad2-2.8.8.tar.gz
cd faad2-2.8.8
emconfigure ./configure --prefix=$HOME/deps
Expand Down

0 comments on commit a7a8b43

Please sign in to comment.