Skip to content

Commit b1ef651

Browse files
committed
[Github Actions] Linux build workflow (gcc and ld)
1 parent a39171a commit b1ef651

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/linux.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ jobs:
6363
needs: build-v8
6464
runs-on: ${{ matrix.os }}
6565
env:
66-
CC: clang
67-
CXX: clang++
6866
DIST_NAME: stpyv8-linux-py${{ matrix.python-version }}
6967
STPYV8_BOOST_PYTHON: boost_python${{ matrix.python-version }}
7068
strategy:

settings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@
4848
"v8_use_external_startup_data": "false",
4949
}
5050

51+
if platform.system() in ("Linux", ):
52+
gn_args["is_clang"] = "false"
53+
gn_args["use_lld"] = "false"
54+
gn_args["use_gold"] = "false"
55+
5156

5257
source_files = [
5358
"Exception.cpp",

0 commit comments

Comments
 (0)