Skip to content

Commit

Permalink
Remove unneeded libc6 references
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Pham <[email protected]>
  • Loading branch information
spham-amzn committed Feb 16, 2024
1 parent 6fd3e6a commit d7dc8c5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
CLANG_VER: 12
GCC_VER: 9
run: |
sudo apt-get install -y clang-${{ env.CLANG_VER }} gcc-${{ env.GCC_VER }} g++-${{ env.GCC_VER }} libc6
sudo apt-get install -y clang-${{ env.CLANG_VER }} gcc-${{ env.GCC_VER }} g++-${{ env.GCC_VER }}
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ env.CLANG_VER }} 10
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ env.CLANG_VER }} 10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ env.GCC_VER }} 10
Expand Down
7 changes: 0 additions & 7 deletions package-system/python/quick_validate_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,12 @@
import sys

try:
print("import tkinter")
import tkinter
print("import ssl")
import ssl
print("import sqlite3")
import sqlite3
print("import encodings")
import encodings
print("import tarfile")
import tarfile
print("import lzma")
import lzma
print("import bz2")
import bz2
except Exception as e:
print("Failed: " + e)
Expand Down

0 comments on commit d7dc8c5

Please sign in to comment.