diff options
author | James McCoy <jamessan@jamessan.com> | 2021-09-24 09:01:50 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-09-24 09:01:50 -0400 |
commit | 64a5eddc8939b9f482433892ba91eb7490fd460d (patch) | |
tree | 82ea689602f0060d9c3a402e80cda3ecc9c54be6 | |
parent | e0cf32c6de36328f8d72382879ee59a7eff80e0a (diff) | |
download | rneovim-64a5eddc8939b9f482433892ba91eb7490fd460d.tar.gz rneovim-64a5eddc8939b9f482433892ba91eb7490fd460d.tar.bz2 rneovim-64a5eddc8939b9f482433892ba91eb7490fd460d.zip |
ci: use runner, instead of os, for job name and cache key
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fd15159ced..0dbe484108 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: jobs: unixish: - name: ${{ matrix.os }} ${{ matrix.flavor }} (cc=${{ matrix.cc }}) + name: ${{ matrix.runner }} ${{ matrix.flavor }} (cc=${{ matrix.cc }}) strategy: fail-fast: false matrix: @@ -83,7 +83,7 @@ jobs: path: | ${{ env.CACHE_NVIM_DEPS_DIR }} ~/.ccache - key: ${{ runner.os }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} + key: ${{ matrix.runner }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} - name: Build third-party run: ./ci/before_script.sh |