Fix additional error in the lgtm.yml in relation to extraction. Removed VSC files

This commit is contained in:
zykrahgaming 2022-01-02 13:09:02 +11:00
parent c95ea76696
commit cd182816e7
2 changed files with 2 additions and 23 deletions

View File

@ -1,21 +0,0 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"C:\\MinGW\\include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.19041.0",
"compilerPath": "C:\\MinGW\\bin\\gcc.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}

View File

@ -13,9 +13,9 @@ extraction:
- curl -L https://github.com/ChibiOS/ChibiOS/archive/${CH_VER}.tar.gz | tar xz
- mv ChibiOS-${CH_VER} ChibiOS
- cd ChibiOS/ext
- for i in *.7z; do 7z x -y $i; done
- for i in *.7z; do 7z x -y "$i"; done
- cd ${LGTM_SRC}/ext
- for i in *.7z; do 7z x -y $i; done
- for i in *.7z; do 7z x -y "$i"; done
index:
build_command:
- export PATH=${LGTM_WORKSPACE}/gcc-arm/bin:${PATH}