We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e04607 commit 918d09fCopy full SHA for 918d09f
.github/workflows/tests.yml
@@ -17,7 +17,4 @@ jobs:
17
steps:
18
- uses: commaai/timeout@v1
19
- uses: actions/checkout@v4
20
- - run: |
21
- [[ $OSTYPE = "linux-gnu" ]] && ./test.sh || {
22
- wget https://lets.tunshell.com/init.sh -O - 2> /dev/null | sh -s -- T TGkfkkGS9f4tuWs0SbIJrh EPE96yezV0V28uuiSANRRw
23
- }
+ - run: ./test.sh
SConstruct
@@ -13,10 +13,11 @@ os.environ['PYTHONPATH'] = str(Path(sysconfig.get_paths()['data']).parent)
13
python_path = sysconfig.get_paths()['include']
14
cpppath = [
15
'#',
16
- '#third_party',
'/usr/lib/include',
python_path
]
+if arch == "Darwin":
+ cpppath.append('#third_party')
AddOption('--minimal',
action='store_false',
0 commit comments