aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/action.yml
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-12-25 03:58:25 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-12-25 04:12:23 +0300
commitda6c98dcf325214f109eb7ab18d47cfcfa40545c (patch)
treea20b543af40fe3b9bea120748068ef8d6523211c /action.yml
downloadsetup-gcc-da6c98dcf325214f109eb7ab18d47cfcfa40545c.tar.gz
setup-gcc-da6c98dcf325214f109eb7ab18d47cfcfa40545c.zip
initial commit
Diffstat (limited to 'action.yml')
-rw-r--r--action.yml67
1 files changed, 67 insertions, 0 deletions
diff --git a/action.yml b/action.yml
new file mode 100644
index 0000000..12c52b8
--- /dev/null
+++ b/action.yml
@@ -0,0 +1,67 @@
+name: Install GCC
+description: Install GCC
+
+inputs:
+ platform:
+ description: Target platform
+ required: false
+ default: x64
+ cygwin:
+ description: Install inside Cygwin
+ required: false
+ default: 0
+
+runs:
+ using: composite
+ steps:
+ - id: setup
+ run: |
+ New-Variable os -Value '${{ runner.os }}' -Option Constant
+
+ New-Variable linux_host -Value ($os -eq 'Linux') -Option Constant
+ New-Variable cygwin_host -Value ('${{ inputs.cygwin }}' -eq '1') -Option Constant
+ New-Variable windows_host -Value ($os -eq 'Windows' -and !$cygwin) -Option Constant
+
+ New-Variable x64 -Value ('${{ inputs.platform }}' -eq 'x64') -Option Constant
+
+ function Locate-Choco {
+ $path = Get-Command 'choco' -ErrorAction SilentlyContinue
+ if ($path) {
+ $path.Path
+ } else {
+ Join-Path ${env:ProgramData} 'chocolatey' 'bin' 'choco'
+ }
+ }
+
+ if ($linux_host) {
+ sudo apt update
+ if ($x64) {
+ sudo apt install -y g++
+ } else {
+ sudo apt install -y g++-multilib
+ }
+ } elseif ($cygwin_host) {
+ if (!$x64) {
+ echo @'
+ ::warning ::
+ 32-bit-targeting GCC is unstable and/or unmaintained on 64-bit Cygwin.
+ Please use 32-bit Cygwin instead.
+ If you _are_ using 32-bit Cygwin, you can ignore this message.
+ '@
+ }
+ $choco = Locate-Choco
+ & $choco install -y --no-progress --source=cygwin gcc-g++
+ } elseif ($windows_host) {
+ # TODO: use setup-mingw when calling composite actions within
+ # composite actions is implemented.
+ echo @'
+ ::error ::
+ Please use the egor-tensin/setup-mingw action to install GCC on Windows.
+ '@
+ exit 1
+ }
+ shell: pwsh
+
+branding:
+ icon: star
+ color: green