Merge pull request #561 from evandroforks/stop_installing_rename

Stop installing rename as it is already bundled
This commit is contained in:
Damien Elmes 2020-04-15 18:55:03 +10:00 committed by GitHub
commit b018dba073
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -180,13 +180,12 @@ jobs:
pacman -Sccv --noconfirm pacman -Sccv --noconfirm
pacman -Qsv --noconfirm pacman -Qsv --noconfirm
- name: Set up curl pyaudio, rename - name: Set up curl pyaudio
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
shell: cmd shell: cmd
run: | run: |
echo on echo on
curl -LO https://download.lfd.uci.edu/pythonlibs/s2jqpv5t/%pyaudio% curl -LO https://download.lfd.uci.edu/pythonlibs/s2jqpv5t/%pyaudio%
curl -LO https://raw.githubusercontent.com/subogero/rename/master/rename
- name: Set up Windows scoop, gettext, ripgrep - name: Set up Windows scoop, gettext, ripgrep
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
@ -196,19 +195,19 @@ jobs:
powershell -executionpolicy bypass "& Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')" powershell -executionpolicy bypass "& Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')"
scoop install -g gettext ripgrep scoop install -g gettext ripgrep
- name: Set up Ubuntu ripgrep, pyaudio, gettext, rename - name: Set up Ubuntu ripgrep, pyaudio, gettext
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
run: | run: |
set -x set -x
sudo apt update sudo apt update
sudo apt install portaudio19-dev gettext rename sudo apt install portaudio19-dev gettext
sudo snap install ripgrep --classic sudo snap install ripgrep --classic
- name: Set up brew ripgrep, pyaudio, gettext, rename - name: Set up brew ripgrep, pyaudio, gettext
if: matrix.os == 'macos-latest' if: matrix.os == 'macos-latest'
run: | run: |
set -x set -x
brew install portaudio protobuf gettext rename ripgrep make brew install portaudio protobuf gettext ripgrep make
brew link gettext --force brew link gettext --force
- name: Set up python - name: Set up python