Skip to content

Commit

Permalink
fix: apt repo
Browse files Browse the repository at this point in the history
  • Loading branch information
mikirov committed Aug 2, 2023
1 parent f05f59c commit 4c7cb16
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,14 @@ jobs:
docker run -v $GITHUB_WORKSPACE:/kagome --rm soramitsu/kagome:latest sh -c "cp /usr/local/bin/kagome . && chmod +x kagome"
- run : |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository -y "deb http://deb.debian.org/debian/ testing main"
sudo apt-get update
sudo apt-get install --no-install-recommends -y libstdc++6 libc6 libnsl2
apt-get update
apt-get install -y --no-install-recommends software-properties-common curl gpg gpg-agent wget
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb http://deb.debian.org/debian/ experimental main" | tee -a /etc/apt/sources.list.d/docker.list > /dev/null
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
add-apt-repository -y "deb http://deb.debian.org/debian/ testing main"
apt-get update
apt-get install --no-install-recommends -y libstdc++6 libc6 libnsl2
- name: Debugging
run: |
Expand Down

0 comments on commit 4c7cb16

Please sign in to comment.