diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2022-07-15 17:42:00 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-15 17:42:00 +0200 |
| commit | 5c49129c5e334a9c7da253499cd9aa19358d4ac9 (patch) | |
| tree | 5f425e7b9d529a2e16f5943c3330b136d2375191 /.github | |
| parent | 9370e1c5111ee90f64260398b0623da4759f8f16 (diff) | |
| parent | d77ec8a5c6d76d5bd78490474dcc238ab8fc7b40 (diff) | |
| download | rneovim-5c49129c5e334a9c7da253499cd9aa19358d4ac9.tar.gz rneovim-5c49129c5e334a9c7da253499cd9aa19358d4ac9.tar.bz2 rneovim-5c49129c5e334a9c7da253499cd9aa19358d4ac9.zip | |
Merge #19324 ci: cleanup ci/ files
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 10 | ||||
| -rwxr-xr-x | .github/workflows/env.sh | 2 |
2 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdc487894e..d4c102bb04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,7 +108,7 @@ jobs: - if: "!cancelled()" name: lintcfull - run: ./ci/run_lint.sh lintcfull + run: make lintcfull - if: "!cancelled()" name: lintstylua @@ -125,19 +125,19 @@ jobs: - if: "!cancelled()" name: lintlua - run: ./ci/run_lint.sh lintlua + run: make lintlua - if: "!cancelled()" name: lintpy - run: ./ci/run_lint.sh lintpy + run: make lintpy - if: "!cancelled()" name: lintsh - run: ./ci/run_lint.sh lintsh + run: make lintsh - if: "!cancelled()" name: check-single-includes - run: ./ci/run_lint.sh check-single-includes + run: make check-single-includes - name: Cache dependencies run: ./ci/before_cache.sh diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh index 03f4a10211..e7c9d19f3a 100755 --- a/.github/workflows/env.sh +++ b/.github/workflows/env.sh @@ -9,7 +9,6 @@ EOF cat <<EOF >> "$GITHUB_ENV" CACHE_ENABLE=true -CI_TARGET=tests CI_BUILD_DIR=$GITHUB_WORKSPACE BUILD_DIR=$GITHUB_WORKSPACE/build DEPS_BUILD_DIR=$HOME/nvim-deps @@ -58,7 +57,6 @@ EOF DEPS_CMAKE_FLAGS="$DEPS_CMAKE_FLAGS -DUSE_BUNDLED_LUV=ON" cat <<EOF >> "$GITHUB_ENV" USE_BUNDLED=OFF -CI_TARGET=lint EOF ;; functionaltest-lua) |