fix: linux builds: use gcc 10 in Linux builds (#4841)

This commit is contained in:
Jack Amadeo 2025-09-26 11:12:05 -04:00 committed by GitHub
parent 4e786db03e
commit 945c783517
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 47 additions and 62 deletions

View file

@ -117,6 +117,7 @@ jobs:
RUST_LOG: debug
RUST_BACKTRACE: 1
CROSS_VERBOSE: 1
CC: gcc-10
run: |
source ./bin/activate-hermit
export TARGET="x86_64-unknown-linux-gnu"
@ -157,10 +158,10 @@ jobs:
source ./bin/activate-hermit
cd ui/desktop
echo "Building Linux packages (.deb and .rpm)..."
# Build both .deb and .rpm packages
npm run make -- --platform=linux --arch=x64
echo "Build completed. Checking output..."
ls -la out/
find out/ -name "*.deb" -o -name "*.rpm" | head -10