瀏覽代碼

Rewrote CI to Pascal

Artem V. Ageev 8 月之前
父節點
當前提交
1b7269a28d
共有 1 個文件被更改,包括 0 次插入119 次删除
  1. 0 119
      .github/workflows/make.sh

+ 0 - 119
.github/workflows/make.sh

@@ -1,119 +0,0 @@
-#!/usr/bin/env bash
-
-function priv_clippit
-(
-    cat <<EOF
-Usage: bash ${0} [OPTIONS]
-Options:
-    build   Build program
-EOF
-)
-
-function priv_lazbuild
-(
-    declare -rA VAR=(
-        [src]='lazpaint'
-        [use]='.'
-        [pkg]='use/components.txt'
-    )
-    if ! [[ -d "${VAR[src]}" ]]; then
-        printf '\x1b[31m\tSource do not find!\x1b[0m\n' "${?}" "${REPLY}"
-        exit 1
-    fi
-    if [[ -f '.gitmodules' ]]; then
-        git submodule update --init --recursive --force --remote &
-    fi
-    if ! (command -v lazbuild); then
-        source '/etc/os-release'
-        case ${ID:?} in
-            debian | ubuntu)
-                sudo apt-get update
-                sudo apt-get install -y lazarus{-ide-qt5,} cppcheck pylint&
-                ;;
-        esac
-    fi
-    wait
-    if [[ -d "${VAR[use]}" ]]; then
-        if [[ -f "${VAR[pkg]}" ]]; then
-            while read -r; do
-                if [[ -n "${REPLY}" ]] &&
-                    ! [[ -d "${VAR[use]}/${REPLY}" ]] &&
-                    ! (lazbuild --verbose-pkgsearch "${REPLY}") &&
-                    ! (lazbuild --add-package "${REPLY}"); then
-                        (
-                            declare -A TMP=(
-                                [url]="https://packages.lazarus-ide.org/${REPLY}.zip"
-                                [dir]="${VAR[use]}/${REPLY}"
-                                [out]=$(mktemp)
-                            )
-                            wget --quiet --output-document "${TMP[out]}" "${TMP[url]}"
-                            unzip -o "${TMP[out]}" -d "${TMP[dir]}"
-                            rm --verbose "${TMP[out]}"
-                        ) &
-                    fi
-            done < "${VAR[pkg]}"
-            wait
-        fi
-        find "${VAR[use]}" -type 'f' -name '*.lpk' -printf '\033[32m\tadd package link\t%p\033[0m\n' -exec \
-            lazbuild --add-package-link {} + 1>&2
-    fi
-    declare -i errors=0
-    while read -r; do
-        declare -A TMP=(
-            [out]=$(mktemp)
-        )
-        if (lazbuild --build-all --recursive --no-write-project --build-mode='release' --widgetset='qt5' "${REPLY}" > "${TMP[out]}"); then
-            printf '\x1b[32m\t[%s]\t%s\x1b[0m\n' "${?}" "${REPLY}"
-            grep --color='always' 'Linking' "${TMP[out]}"
-        else
-            printf '\x1b[31m\t[%s]\t%s\x1b[0m\n' "${?}" "${REPLY}"
-            grep --color='always' --extended-regexp '(Error|Fatal):' "${TMP[out]}"
-            ((errors+=1))
-        fi 1>&2
-        rm "${TMP[out]}"
-    done < <(find "${VAR[src]}" -type 'f' -name '*.lpi' | sort)
-    
-    # Python linting
-    find 'resources' -type 'f' -name '*.py' | while read -r file; do
-        printf '\033[32m\tLinting Python file: %s\033[0m\n' "$file"
-        if ! python3 -m pylint "$file" 1>&2; then
-            printf '\033[31m\tError in Python linting: %s\033[0m\n' "$file"
-            ((errors+=1))
-        fi
-    done
-
-    # C linting
-    find "${VAR[src]}" -type 'f' -name '*.c' | while read -r file; do
-        printf '\033[32m\tLinting C file: %s\033[0m\n' "$file"
-        if ! cppcheck --language=c --enable=warning,style --template=gcc "$file" 1>&2; then
-            printf '\033[31m\tError in C linting: %s\033[0m\n' "$file"
-            ((errors+=1))
-        fi
-    done
-
-    # Shell script linting
-    find "${PWD}" -type 'f' -name '*.sh' | while read -r file; do
-        printf '\033[32m\tLinting Shell script: %s\033[0m\n' "$file"
-        if ! shellcheck --external-sources "$file" 1>&2; then
-            printf '\033[31m\tError in Shell linting: %s\033[0m\n' "$file"
-            ((errors+=1))
-        fi
-    done
-
-    exit "${errors}"
-)
-
-function priv_main
-(
-    set -uo pipefail
-    if ((${#})); then
-        case ${1} in
-            build) priv_lazbuild ;;
-            *) priv_clippit ;;
-        esac
-    else
-        priv_clippit
-    fi
-)
-
-priv_main "${@}" >/dev/null