| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | import * as core from '@actions/core'; | 
					
						
							|  |  |  | import * as tc from '@actions/tool-cache'; | 
					
						
							|  |  |  | import * as installer from './installer'; | 
					
						
							|  |  |  | import * as path from 'path'; | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  | import * as cp from 'child_process'; | 
					
						
							|  |  |  | import * as 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.
 | 
					
						
							|  |  |  |     //
 | 
					
						
							|  |  |  |     let versionSpec = core.getInput('go-version'); | 
					
						
							| 
									
										
										
										
											2020-02-09 08:47:38 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-09 08:44:32 -05:00
										 |  |  |     // stable will be true unless false is the exact input
 | 
					
						
							|  |  |  |     // since getting unstable versions should be explicit
 | 
					
						
							| 
									
										
										
										
											2020-02-10 15:21:04 -05:00
										 |  |  |     let stable = (core.getInput('stable') || 'true').toUpperCase() === 'TRUE'; | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-09 22:39:44 -05:00
										 |  |  |     console.log( | 
					
						
							|  |  |  |       `Setup go ${stable ? 'stable' : ''} version spec ${versionSpec}` | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  |     // if there's a globally install go and bin path, prefer that
 | 
					
						
							|  |  |  |     let addedBin = addBinToPath(); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  |     if (versionSpec) { | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  |       let installDir: string | undefined = tc.find('go', versionSpec); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  |       if (!installDir) { | 
					
						
							| 
									
										
										
										
											2020-02-09 22:39:44 -05:00
										 |  |  |         console.log( | 
					
						
							|  |  |  |           `A version satisfying ${versionSpec} not found locally, attempting to download ...` | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  |         installDir = await installer.downloadGo(versionSpec, stable); | 
					
						
							| 
									
										
										
										
											2020-02-09 22:42:10 -05:00
										 |  |  |         console.log('Installed'); | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (installDir) { | 
					
						
							|  |  |  |         core.exportVariable('GOROOT', installDir); | 
					
						
							|  |  |  |         core.addPath(path.join(installDir, 'bin')); | 
					
						
							| 
									
										
										
										
											2020-02-09 22:42:10 -05:00
										 |  |  |         console.log('Added go to the path'); | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // if the global installed bin wasn't added,
 | 
					
						
							|  |  |  |         // we can add the bin just installed
 | 
					
						
							|  |  |  |         if (!addBinToPath) { | 
					
						
							|  |  |  |           addBinToPath(); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  |       } else { | 
					
						
							|  |  |  |         throw new Error( | 
					
						
							|  |  |  |           `Could not find a version that satisfied version spec: ${versionSpec}` | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2020-02-09 00:21:39 -05:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // add problem matchers
 | 
					
						
							|  |  |  |     const matchersPath = path.join(__dirname, '..', 'matchers.json'); | 
					
						
							|  |  |  |     console.log(`##[add-matcher]${matchersPath}`); | 
					
						
							|  |  |  |   } catch (error) { | 
					
						
							|  |  |  |     core.setFailed(error.message); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2020-02-09 00:29:21 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-26 12:02:52 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | function addBinToPath(): boolean { | 
					
						
							|  |  |  |   let added = false; | 
					
						
							|  |  |  |   let buf = cp.execSync('go env GOPATH'); | 
					
						
							|  |  |  |   if (buf) { | 
					
						
							|  |  |  |     let d = buf.toString().trim(); | 
					
						
							|  |  |  |     let bp = path.join(d, 'bin'); | 
					
						
							|  |  |  |     if (fs.existsSync(bp)) { | 
					
						
							|  |  |  |       core.addPath(bp); | 
					
						
							|  |  |  |       added = true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return added; | 
					
						
							|  |  |  | } |