aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/action.yml
blob: 8b2a0385afe4f0759e9a1ce3fda2774cd1ed63a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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:
    - 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'
            }
        }

        function Make-Link {
            param(
                [Parameter(Mandatory=$true)]
                [string] $ExeName,
                [Parameter(Mandatory=$true)]
                [string] $LinkName
            )

            $exe_path = (Get-Command $ExeName).Path
            $exe_dir = Split-Path $exe_path
            $exe_name = Split-Path $exe_path -Leaf
            if (!$exe_name.StartsWith($ExeName)) {
                throw "'$exe_name' must start with '$ExeName'"
            }
            $ext = $exe_name.Substring($ExeName.Length)

            $link_dir = if ($script:linux_host) { '/usr/local/bin' } else { $exe_dir }
            $link_name = $LinkName + $ext
            $link_path = Join-Path $link_dir $link_name

            echo "Creating link '$link_path', pointing to '$exe_path'"
            if ($script:linux_host) {
                sudo rm -f -- $link_path
                sudo ln -s -- $exe_path $link_path
            } else {
                if (Test-Path $link_path) {
                    Remove-Item $link_path -Force
                }
                New-Item -ItemType HardLink -Path $link_path -Value $exe_path | Out-Null
            }
        }

        if ($linux_host) {
            sudo apt update
            if ($x64) {
                sudo apt install -y g++
            } else {
                sudo apt install -y g++-multilib
            }

            Make-Link -Exe gcc -LinkName cc
            Make-Link -Exe g++ -LinkName c++
        } 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++

            Make-Link -Exe gcc -LinkName cc
            Make-Link -Exe g++ -LinkName c++
        } 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
        } else {
            throw "Sorry, installing GCC is unsupported on $os"
        }
      shell: pwsh

branding:
  icon: star
  color: green