commit
						0c6bc55556
					
				
							
								
								
									
										18
									
								
								.github/python.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								.github/python.json
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @ -0,0 +1,18 @@ | |||||||
|  | { | ||||||
|  |     "problemMatcher": [ | ||||||
|  |         { | ||||||
|  |             "owner": "python", | ||||||
|  |             "pattern": [ | ||||||
|  |                 { | ||||||
|  |                     "regexp": "^\\s*File\\s\\\"(.*)\\\",\\sline\\s(\\d+),\\sin\\s(.*)$", | ||||||
|  |                     "file": 1, | ||||||
|  |                     "line": 2 | ||||||
|  |                 }, | ||||||
|  |                 { | ||||||
|  |                     "regexp": "^\\s*raise\\s(.*)\\(\\'(.*)\\'\\)$", | ||||||
|  |                     "message": 2 | ||||||
|  |                 } | ||||||
|  |             ] | ||||||
|  |         } | ||||||
|  |     ] | ||||||
|  | } | ||||||
| @ -17,6 +17,7 @@ var __importStar = (this && this.__importStar) || function (mod) { | |||||||
| Object.defineProperty(exports, "__esModule", { value: true }); | Object.defineProperty(exports, "__esModule", { value: true }); | ||||||
| const core = __importStar(require("@actions/core")); | const core = __importStar(require("@actions/core")); | ||||||
| const finder = __importStar(require("./find-python")); | const finder = __importStar(require("./find-python")); | ||||||
|  | const path = __importStar(require("path")); | ||||||
| function run() { | function run() { | ||||||
|     return __awaiter(this, void 0, void 0, function* () { |     return __awaiter(this, void 0, void 0, function* () { | ||||||
|         try { |         try { | ||||||
| @ -25,6 +26,8 @@ function run() { | |||||||
|                 const arch = core.getInput('architecture', { required: true }); |                 const arch = core.getInput('architecture', { required: true }); | ||||||
|                 yield finder.findPythonVersion(version, arch); |                 yield finder.findPythonVersion(version, arch); | ||||||
|             } |             } | ||||||
|  |             const matchersPath = path.join(__dirname, '..', '.github'); | ||||||
|  |             console.log(`##[add-matcher]${path.join(matchersPath, 'python.json')}`); | ||||||
|         } |         } | ||||||
|         catch (err) { |         catch (err) { | ||||||
|             core.setFailed(err.message); |             core.setFailed(err.message); | ||||||
|  | |||||||
| @ -1,5 +1,6 @@ | |||||||
| import * as core from '@actions/core'; | import * as core from '@actions/core'; | ||||||
| import * as finder from './find-python'; | import * as finder from './find-python'; | ||||||
|  | import * as path from 'path'; | ||||||
| 
 | 
 | ||||||
| async function run() { | async function run() { | ||||||
|   try { |   try { | ||||||
| @ -8,6 +9,8 @@ async function run() { | |||||||
|       const arch: string = core.getInput('architecture', {required: true}); |       const arch: string = core.getInput('architecture', {required: true}); | ||||||
|       await finder.findPythonVersion(version, arch); |       await finder.findPythonVersion(version, arch); | ||||||
|     } |     } | ||||||
|  |     const matchersPath = path.join(__dirname, '..', '.github'); | ||||||
|  |     console.log(`##[add-matcher]${path.join(matchersPath, 'python.json')}`); | ||||||
|   } catch (err) { |   } catch (err) { | ||||||
|     core.setFailed(err.message); |     core.setFailed(err.message); | ||||||
|   } |   } | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user