Description:

This commit is contained in:
Martin Marmsoler 2024-04-20 18:30:53 +02:00
parent d9d8c28ad2
commit 33451d4fa5

View File

@ -30,7 +30,6 @@ jobs:
- name: Check CMake code style - name: Check CMake code style
run: | run: |
test -e "NotFound.txt" || exit 1
pip install cmake-format==0.6.13 && \ pip install cmake-format==0.6.13 && \
find \( -type d -path './dep/*/*' -prune \) -o \( -name CMakeLists.txt -exec cmake-format --check {} + \) find \( -type d -path './dep/*/*' -prune \) -o \( -name CMakeLists.txt -exec cmake-format --check {} + \)
@ -387,15 +386,15 @@ jobs:
- name: list artifacts folder - name: list artifacts folder
run: | run: |
set -e
echo "Show artifacts folder:" echo "Show artifacts folder:"
ls artifacts ls artifacts
file "artifacts/Gittyup win64/Gittyup*.exe" echo "Check artifacts"
file "artifacts/Gittyup win32/Gittyup*.exe" test -e "artifacts/Gittyup win64/Gittyup*.exe" || exit 1
file "artifacts/Gittyup macos/Gittyup*.dmg" test -e "artifacts/Gittyup win32/Gittyup*.exe" || exit 1
file "artifacts/Gittyup-VERSION/Version.txt" test -e "artifacts/Gittyup macos/Gittyup*.dmg" || exit 1
file "artifacts/GittyupFlatpak/*.flatpak" test -e "artifacts/Gittyup-VERSION/Version.txt" || exit 1
file "artifacts/GittyupAppImage/Gittyup*.AppImage" test -e "artifacts/GittyupFlatpak/*.flatpak" || exit 1
test -e "artifacts/GittyupAppImage/Gittyup*.AppImage" || exit 1
# version is exported from cmake to file # version is exported from cmake to file
- name: Retrieve version - name: Retrieve version