Skip to content

Commit

Permalink
ci: display tool versions
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Sep 17, 2023
1 parent 8c8bfe1 commit ad518e1
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,32 @@ jobs:

- name: "Install archivers (linux)"
if: ${{runner.os == 'Linux'}}
run: sudo -nH apt-get -qqy install unrar unar libarchive-tools p7zip-rar
run: |
sudo -nH apt-get -qqy install unrar unar libarchive-tools p7zip-rar
unrar
unar -h
bsdtar -h
7z i
- name: "Install archivers (macos)"
if: ${{runner.os == 'macOS'}}
run: brew install rar unar libarchive sevenzip
run: |
brew install rar unar libarchive sevenzip
unrar
unar -h
bsdtar -h
7z i
7zz i
- name: "Install archivers (windows)"
if: ${{runner.os == 'Windows'}}
shell: cmd
run: |
set "PATH=c:\msys64\usr\bin;%PATH%"
pacman -S --noconfirm --needed unrar bsdtar p7zip
unrar
bsdtar -h
7z i
- name: "Install tools"
run: python -m pip install -r etc/requirements.build.txt --disable-pip-version-check
Expand Down

0 comments on commit ad518e1

Please sign in to comment.