diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-02-13 18:26:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-13 18:26:01 +0100 |
| commit | 9de9bd4bedde734e6b795e899e78b5417bc82fe4 (patch) | |
| tree | f486737a97d61ac1ea9a3332dfb15302318ef894 /.github/workflows | |
| parent | d359f7a533bdec9f9f4a51244fefc01064d8b9f9 (diff) | |
| download | rneovim-9de9bd4bedde734e6b795e899e78b5417bc82fe4.tar.gz rneovim-9de9bd4bedde734e6b795e899e78b5417bc82fe4.tar.bz2 rneovim-9de9bd4bedde734e6b795e899e78b5417bc82fe4.zip | |
ci: replace cmake script with bash script (#22246)
Bash has better error handling than cmake, and seem overall slightly
more suited to scripting than cmake.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/codeql.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/coverity.yml | 2 |
3 files changed, 6 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 717362963c..da4bcc6ad4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,9 +41,7 @@ jobs: - uses: actions/checkout@v3 - name: Install dependencies - run: | - cmake -P ./.github/scripts/install_dependencies.cmake - sudo apt-get install -y lua-check + run: ./.github/scripts/install_deps.sh lua-check - name: Cache uncrustify id: cache-uncrustify @@ -132,7 +130,7 @@ jobs: - name: Install dependencies run: | sudo add-apt-repository ppa:neovim-ppa/stable - cmake -P ./.github/scripts/install_dependencies.cmake + ./.github/scripts/install_deps.sh sudo apt-get install -y \ libluajit-5.1-dev \ libmsgpack-dev \ @@ -225,7 +223,7 @@ jobs: run: mkdir -p "$LOG_DIR" - name: Install dependencies - run: cmake -D TEST_DEPS=ON -P ./.github/scripts/install_dependencies.cmake + run: ./.github/scripts/install_deps.sh cpanminus - name: Setup interpreter packages run: | @@ -364,7 +362,7 @@ jobs: run: echo "$BIN_DIR" >> $GITHUB_PATH - name: Install dependencies - run: cmake -P ./.github/scripts/install_dependencies.cmake + run: ./.github/scripts/install_deps.sh - name: Install minimum required version of cmake run: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c4f4346de1..497a79d2d1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v3 - name: Install dependencies - run: cmake -P ./.github/scripts/install_dependencies.cmake + run: ./.github/scripts/install_deps.sh - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 15c494dc93..e63f119958 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - name: Install dependencies - run: cmake -P ./.github/scripts/install_dependencies.cmake + run: ./.github/scripts/install_deps.sh - name: Download Coverity run: | |