diff options
author | James McCoy <jamessan@jamessan.com> | 2021-03-14 18:47:08 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2021-03-14 19:27:50 -0400 |
commit | dfa01b820fe9c9a4d4b6e643e4d259469cd582e2 (patch) | |
tree | b20881d954bae485a8b633111f0d7c1c17429739 | |
parent | 9808c8d9ddea2a8e29e7b979581ba67f8871a1b1 (diff) | |
download | rneovim-dfa01b820fe9c9a4d4b6e643e4d259469cd582e2.tar.gz rneovim-dfa01b820fe9c9a4d4b6e643e4d259469cd582e2.tar.bz2 rneovim-dfa01b820fe9c9a4d4b6e643e4d259469cd582e2.zip |
ci(GHA/release): Stop installing gcc-multilib
Recent changes in Xenial have made it uninstallable and we aren't
actually using anything from it for the release builds.
-rw-r--r-- | .github/workflows/release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 753142e555..2d0d21a585 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y autoconf automake build-essential cmake gcc-multilib gettext gperf libtool-bin locales ninja-build pkg-config unzip + sudo apt-get install -y autoconf automake build-essential cmake gettext gperf libtool-bin locales ninja-build pkg-config unzip - name: Build release id: build run: | @@ -51,7 +51,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update - sudo apt-get install -y autoconf automake build-essential cmake gcc-multilib gettext gperf libtool-bin locales ninja-build pkg-config unzip + sudo apt-get install -y autoconf automake build-essential cmake gettext gperf libtool-bin locales ninja-build pkg-config unzip - if: github.event_name == 'push' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly') run: make appimage-latest - if: github.event_name == 'schedule' || (github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly') |