diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-03-05 16:25:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-05 16:25:37 +0100 |
| commit | f636619d9e4326f6916ef06829acfd22619a1308 (patch) | |
| tree | 9ee285effa26505127cd8813d906f9c5ea91d54f /.github/workflows | |
| parent | f4d83ac1e22e55a12895e5945680d90ee7c09b85 (diff) | |
| parent | 2ddb50fa1bf84284e36e9345bde2de786f3b4f72 (diff) | |
| download | rneovim-f636619d9e4326f6916ef06829acfd22619a1308.tar.gz rneovim-f636619d9e4326f6916ef06829acfd22619a1308.tar.bz2 rneovim-f636619d9e4326f6916ef06829acfd22619a1308.zip | |
Merge pull request #22486 from dundargoc/ci/cache
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a702bce71f..16bbca7050 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -189,8 +189,6 @@ jobs: perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' fi - - run: echo "DEPS_BUILD_DIR=$HOME/nvim-deps" >> $GITHUB_ENV - - uses: ./.github/actions/cache - name: Build third-party deps @@ -270,30 +268,6 @@ jobs: name: Show logs run: cat $(find "$LOG_DIR" -type f) - - if: success() || failure() && steps.abort_job.outputs.status == 'success' - name: Show core dumps - run: | - # TODO(dundargoc): app should be luajit for unittests - app="build/bin/nvim" - if test "$RUNNER_OS" = macOS; then - cores="$(find /cores/ -type f -print)" - else - cores="$(find ./ -type f \( -name 'core.*' -o -name core -o -name nvim.core \) -print)" - fi - - if test -z "$cores"; then - exit 0 - fi - for core in $cores; do - if test "$RUNNER_OS" = macOS; then - lldb -Q -o "bt all" -f "$app" -c "$core" - else - gdb -n -batch -ex 'thread apply all bt full' "$app" -c "$core" - fi - done - echo 'Core dumps found' - exit 1 - build-types: runs-on: ubuntu-22.04 timeout-minutes: 10 |