| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | import * as core from '@actions/core'; | 
					
						
							| 
									
										
										
										
											2020-03-26 12:40:41 -04:00
										 |  |  | import * as io from '@actions/io'; | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | import * as installer from './installer'; | 
					
						
							| 
									
										
										
										
											2022-03-14 12:21:30 -04:00
										 |  |  | import * as semver from 'semver'; | 
					
						
							| 
									
										
										
										
											2020-03-27 00:55:12 -04:00
										 |  |  | import path from 'path'; | 
					
						
							| 
									
										
										
										
											2022-05-25 12:07:29 +02:00
										 |  |  | import {restoreCache} from './cache-restore'; | 
					
						
							|  |  |  | import {isGhes, isCacheFeatureAvailable} from './cache-utils'; | 
					
						
							| 
									
										
										
										
											2020-03-27 00:55:12 -04:00
										 |  |  | import cp from 'child_process'; | 
					
						
							|  |  |  | import fs from 'fs'; | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | export async function run() { | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     // versionSpec is optional.  If supplied, install / use from the tool cache
 | 
					
						
							|  |  |  |     // If not supplied then problem matchers will still be setup.  Useful for self-hosted.
 | 
					
						
							|  |  |  |     //
 | 
					
						
							| 
									
										
										
										
											2022-05-12 17:04:39 +09:00
										 |  |  |     const versionSpec = resolveVersionInput(); | 
					
						
							| 
									
										
										
										
											2020-02-09 08:47:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-25 12:07:29 +02:00
										 |  |  |     const cache = core.getBooleanInput('cache'); | 
					
						
							| 
									
										
										
										
											2022-02-28 10:16:32 +03:00
										 |  |  |     core.info(`Setup go version spec ${versionSpec}`); | 
					
						
							| 
									
										
										
										
											2020-02-09 22:39:44 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  |     if (versionSpec) { | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |       let token = core.getInput('token'); | 
					
						
							|  |  |  |       let auth = !token || isGhes() ? undefined : `token ${token}`; | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-09 14:59:04 +03:00
										 |  |  |       const checkLatest = core.getBooleanInput('check-latest'); | 
					
						
							| 
									
										
										
										
											2022-02-28 10:16:32 +03:00
										 |  |  |       const installDir = await installer.getGo(versionSpec, checkLatest, auth); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |       core.addPath(path.join(installDir, 'bin')); | 
					
						
							|  |  |  |       core.info('Added go to the path'); | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 12:21:30 -04:00
										 |  |  |       const version = installer.makeSemver(versionSpec); | 
					
						
							|  |  |  |       // Go versions less than 1.9 require GOROOT to be set
 | 
					
						
							|  |  |  |       if (semver.lt(version, '1.9.0')) { | 
					
						
							| 
									
										
										
										
											2022-03-14 12:23:03 -04:00
										 |  |  |         core.info('Setting GOROOT for Go version < 1.9'); | 
					
						
							| 
									
										
										
										
											2022-03-14 12:21:30 -04:00
										 |  |  |         core.exportVariable('GOROOT', installDir); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |       let added = await addBinToPath(); | 
					
						
							|  |  |  |       core.debug(`add bin ${added}`); | 
					
						
							| 
									
										
										
										
											2022-05-03 08:43:40 -04:00
										 |  |  |       core.info(`Successfully set up Go version ${versionSpec}`); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-25 12:07:29 +02:00
										 |  |  |     if (cache && isCacheFeatureAvailable()) { | 
					
						
							|  |  |  |       const packageManager = 'default'; | 
					
						
							|  |  |  |       const cacheDependencyPath = core.getInput('cache-dependency-path'); | 
					
						
							|  |  |  |       await restoreCache(packageManager, cacheDependencyPath); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  |     // add problem matchers
 | 
					
						
							| 
									
										
										
										
											2022-05-25 12:07:29 +02:00
										 |  |  |     const matchersPath = path.join(__dirname, '../..', 'matchers.json'); | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |     core.info(`##[add-matcher]${matchersPath}`); | 
					
						
							| 
									
										
										
										
											2020-03-31 10:32:03 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // output the version actually being used
 | 
					
						
							|  |  |  |     let goPath = await io.which('go'); | 
					
						
							| 
									
										
										
										
											2020-03-31 10:40:32 -04:00
										 |  |  |     let goVersion = (cp.execSync(`${goPath} version`) || '').toString(); | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |     core.info(goVersion); | 
					
						
							| 
									
										
										
										
											2020-04-06 08:42:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-08 12:23:10 -04:00
										 |  |  |     core.setOutput('go-version', parseGoVersion(goVersion)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 08:42:55 -04:00
										 |  |  |     core.startGroup('go env'); | 
					
						
							|  |  |  |     let goEnv = (cp.execSync(`${goPath} env`) || '').toString(); | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |     core.info(goEnv); | 
					
						
							| 
									
										
										
										
											2020-04-06 08:42:55 -04:00
										 |  |  |     core.endGroup(); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  |   } catch (error) { | 
					
						
							|  |  |  |     core.setFailed(error.message); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 00:55:12 -04:00
										 |  |  | export async function addBinToPath(): Promise<boolean> { | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  |   let added = false; | 
					
						
							| 
									
										
										
										
											2020-03-26 12:40:41 -04:00
										 |  |  |   let g = await io.which('go'); | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |   core.debug(`which go :${g}:`); | 
					
						
							| 
									
										
										
										
											2020-03-26 12:40:41 -04:00
										 |  |  |   if (!g) { | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |     core.debug('go not in the path'); | 
					
						
							| 
									
										
										
										
											2020-03-26 12:40:41 -04:00
										 |  |  |     return added; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-03-26 12:17:32 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 12:40:41 -04:00
										 |  |  |   let buf = cp.execSync('go env GOPATH'); | 
					
						
							| 
									
										
										
										
											2022-04-17 17:36:51 +02:00
										 |  |  |   if (buf.length > 1) { | 
					
						
							| 
									
										
										
										
											2020-03-26 12:40:41 -04:00
										 |  |  |     let gp = buf.toString().trim(); | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |     core.debug(`go env GOPATH :${gp}:`); | 
					
						
							| 
									
										
										
										
											2020-03-26 13:00:45 -04:00
										 |  |  |     if (!fs.existsSync(gp)) { | 
					
						
							|  |  |  |       // some of the hosted images have go install but not profile dir
 | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |       core.debug(`creating ${gp}`); | 
					
						
							| 
									
										
										
										
											2022-03-28 10:54:44 +01:00
										 |  |  |       await io.mkdirP(gp); | 
					
						
							| 
									
										
										
										
											2020-03-26 13:00:45 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-26 12:23:38 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 13:00:45 -04:00
										 |  |  |     let bp = path.join(gp, 'bin'); | 
					
						
							|  |  |  |     if (!fs.existsSync(bp)) { | 
					
						
							| 
									
										
										
										
											2020-06-29 18:41:13 +03:00
										 |  |  |       core.debug(`creating ${bp}`); | 
					
						
							| 
									
										
										
										
											2022-03-28 10:54:44 +01:00
										 |  |  |       await io.mkdirP(bp); | 
					
						
							| 
									
										
										
										
											2020-03-26 12:54:21 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-03-26 13:00:45 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     core.addPath(bp); | 
					
						
							|  |  |  |     added = true; | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  |   } | 
					
						
							|  |  |  |   return added; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-27 00:55:12 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-08 12:23:10 -04:00
										 |  |  | export function parseGoVersion(versionString: string): string { | 
					
						
							|  |  |  |   // get the installed version as an Action output
 | 
					
						
							|  |  |  |   // based on go/src/cmd/go/internal/version/version.go:
 | 
					
						
							|  |  |  |   // fmt.Printf("go version %s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH)
 | 
					
						
							|  |  |  |   // expecting go<version> for runtime.Version()
 | 
					
						
							|  |  |  |   return versionString.split(' ')[2].slice('go'.length); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-12 17:04:39 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | function resolveVersionInput(): string { | 
					
						
							|  |  |  |   let version = core.getInput('go-version'); | 
					
						
							|  |  |  |   const versionFilePath = core.getInput('go-version-file'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (version && versionFilePath) { | 
					
						
							|  |  |  |     core.warning( | 
					
						
							|  |  |  |       'Both go-version and go-version-file inputs are specified, only go-version will be used' | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (version) { | 
					
						
							|  |  |  |     return version; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (versionFilePath) { | 
					
						
							|  |  |  |     if (!fs.existsSync(versionFilePath)) { | 
					
						
							|  |  |  |       throw new Error( | 
					
						
							|  |  |  |         `The specified go version file at: ${versionFilePath} does not exist` | 
					
						
							|  |  |  |       ); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     version = installer.parseGoVersionFile(versionFilePath); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return version; | 
					
						
							|  |  |  | } |