File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
xcodebuild -project _Build_/Xcode/Einstein.xcodeproj -scheme Einstein -archivePath Einstein.xcarchive archive
32
32
mkdir -p artifacts
33
33
tar czf artifacts/Einstein.app.tgz -C Einstein.xcarchive/Products/Applications/ Einstein.app
34
- - uses : actions/upload-artifact@v2
34
+ - uses : actions/upload-artifact@v4
35
35
with :
36
36
name : Einstein.app
37
37
path : artifacts/Einstein.app.tgz
Original file line number Diff line number Diff line change 53
53
cmake --build Einstein/Drivers/build
54
54
cmake --install Einstein/Drivers/build
55
55
- name : Store the REx
56
- uses : actions/upload-artifact@v2
56
+ uses : actions/upload-artifact@v4
57
57
with :
58
58
name : Einstein.rex
59
59
path : Einstein/_Data_/Einstein.rex
Original file line number Diff line number Diff line change @@ -485,12 +485,12 @@ if(CLANG_FORMAT_EXECUTABLE)
485
485
set (CLANG_FORMAT_FOUND TRUE )
486
486
message (STATUS "Found clang-format at ${CLANG_FORMAT_EXECUTABLE} " )
487
487
else ()
488
- message (STATUS "clang-format not usable, as version of ${CLANG_FORMAT_EXECUTABLE} doesn't match : ${CLANG_FORMAT_VERSION_MAJOR} < 13" )
488
+ message (WARNING "clang-format not usable, as version of ${CLANG_FORMAT_EXECUTABLE} doesn't match : ${CLANG_FORMAT_VERSION_MAJOR} < 13" )
489
489
set (CLANG_FORMAT_FOUND FALSE )
490
490
endif ()
491
491
else ()
492
492
set (CLANG_FORMAT_FOUND FALSE )
493
- message (STATUS "clang-format not found" )
493
+ message (WARNING "clang-format not found" )
494
494
endif ()
495
495
496
496
if (CLANG_FORMAT_FOUND)
You can’t perform that action at this time.
0 commit comments