diff options
| author | dundargoc <gocdundar@gmail.com> | 2023-10-22 13:30:32 +0200 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-03 22:16:45 +0100 |
| commit | 9ad239690fe6b151afe2f43c2858d68a2b877e1d (patch) | |
| tree | 9c682b2397224a9dec6cdcc22b49c27fbcdd91c8 /.github/scripts | |
| parent | 310896f6aa1d1242d531c30d2cffa20ff8cb635f (diff) | |
| download | rneovim-9ad239690fe6b151afe2f43c2858d68a2b877e1d.tar.gz rneovim-9ad239690fe6b151afe2f43c2858d68a2b877e1d.tar.bz2 rneovim-9ad239690fe6b151afe2f43c2858d68a2b877e1d.zip | |
ci: various fixes
- adjust reviewers
- add workflow as cache key
- install attr only when tesitng
- fix s390x workflow by checking out the merge PR instead of master
Diffstat (limited to '.github/scripts')
| -rwxr-xr-x | .github/scripts/install_deps.sh | 4 | ||||
| -rw-r--r-- | .github/scripts/reviews.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index bcc9789908..91c1d04081 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -12,7 +12,7 @@ done os=$(uname -s) if [[ $os == Linux ]]; then sudo apt-get update - sudo apt-get install -y attr build-essential cmake curl gettext libattr1-dev ninja-build unzip + sudo apt-get install -y build-essential cmake curl gettext ninja-build unzip if [[ $CC == clang ]]; then DEFAULT_CLANG_VERSION=$(echo | clang -dM -E - | grep __clang_major | awk '{print $3}') @@ -30,7 +30,7 @@ if [[ $os == Linux ]]; then fi if [[ -n $TEST ]]; then - sudo apt-get install -y locales-all cpanminus + sudo apt-get install -y locales-all cpanminus attr libattr1-dev fi elif [[ $os == Darwin ]]; then brew update --quiet diff --git a/.github/scripts/reviews.js b/.github/scripts/reviews.js index 8fae929421..d28d91c2f6 100644 --- a/.github/scripts/reviews.js +++ b/.github/scripts/reviews.js @@ -60,7 +60,7 @@ module.exports = async ({ github, context }) => { if (labels.includes("lsp")) { reviewers.add("folke"); - reviewers.add("glepnir"); + reviewers.add("MariaSolOs"); reviewers.add("mfussenegger"); } |