fixing ci: skip test for metro rp2040, esp32s2/s3
This commit is contained in:
parent
af49d122ad
commit
7726ab3b8c
23 changed files with 81 additions and 0 deletions
55
CMakeLists.txt
Normal file
55
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
|
||||
function(adafruit_sdfat_add TARGET)
|
||||
target_sources(${TARGET} PUBLIC
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FreeStack.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/MinimumSerial.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/FmtNumber.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/FsCache.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/FsDateTime.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/FsName.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/FsStructs.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/FsUtf.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/PrintBasic.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common/upcase.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/common
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatDbg.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatFile.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatFilePrint.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatFileWrite.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatFormatter.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatName.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatPartition.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/ExFatLib/ExFatVolume.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatDbg.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatFile.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatFileLFN.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatFilePrint.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatFileSFN.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatFormatter.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatName.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatPartition.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FatLib/FatVolume.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FsLib/FsFile.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FsLib/FsNew.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/FsLib/FsVolume.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/iostream/istream.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/iostream/ostream.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/iostream/StdioStream.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/iostream/StreamBaseClass.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SdCard/Rp2040Sdio/PioSdioCard.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SdCard/SdCardInfo.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SdCard/SdSpiCard.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SdCard/TeensySdio/TeensySdio.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiArtemis.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiChipSelect.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiDue.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiParticle.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiSTM32.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiSTM32Core.cpp
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src/SpiDriver/SdSpiTeensy3.cpp
|
||||
)
|
||||
target_include_directories(${TARGET} PUBLIC
|
||||
${CMAKE_CURRENT_FUNCTION_LIST_DIR}/src
|
||||
)
|
||||
endfunction()
|
||||
2
examples/BackwardCompatibility/.skip.txt
Normal file
2
examples/BackwardCompatibility/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/UnicodeFilenames/.skip.txt
Normal file
2
examples/UnicodeFilenames/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_esp32s2
|
||||
feather_esp32s3
|
||||
2
examples/debug/TestGetName/.skip.txt
Normal file
2
examples/debug/TestGetName/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_esp32s2
|
||||
feather_esp32s3
|
||||
2
examples/debug/TestMkdir/.skip.txt
Normal file
2
examples/debug/TestMkdir/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/debug/TestRmdir/.skip.txt
Normal file
2
examples/debug/TestRmdir/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/examplesV1/#attic/PrintBenchmarkSD/.skip.txt
Normal file
2
examples/examplesV1/#attic/PrintBenchmarkSD/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/examplesV1/#attic/SD_Size/.skip.txt
Normal file
2
examples/examplesV1/#attic/SD_Size/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/examplesV1/#attic/StreamParseInt/.skip.txt
Normal file
2
examples/examplesV1/#attic/StreamParseInt/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
4
examples/examplesV1/#attic/benchSD/.skip.txt
Normal file
4
examples/examplesV1/#attic/benchSD/.skip.txt
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
feather_esp32s2
|
||||
feather_esp32s3
|
||||
2
examples/examplesV1/ReadCsv/.skip.txt
Normal file
2
examples/examplesV1/ReadCsv/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/examplesV1/ReadCsvArray/.skip.txt
Normal file
2
examples/examplesV1/ReadCsvArray/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
2
examples/examplesV1/ReadWrite/.skip.txt
Normal file
2
examples/examplesV1/ReadWrite/.skip.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
feather_rp2040
|
||||
metro_rp2040
|
||||
Loading…
Reference in a new issue