mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* add missing tests * fix naming and nvm test * fix containers test and bring pwsh test back * remove pwsh test * small fix
11 lines
333 B
Bash
11 lines
333 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: 7-zip.sh
|
|
## Desc: Installs 7-zip
|
|
################################################################################
|
|
|
|
# Install 7-Zip
|
|
apt-get update -y
|
|
apt-get install -y p7zip p7zip-full p7zip-rar
|
|
|
|
invoke_tests "Tools" "7-Zip" |