You've already forked setup-python
							
							
				mirror of
				https://github.com/actions/setup-python.git
				synced 2025-11-04 08:46:41 +07:00 
			
		
		
		
	Add CMake hints
This commit is contained in:
		
							
								
								
									
										33
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										33
									
								
								dist/setup/index.js
									
									
									
									
										vendored
									
									
								
							@ -63884,12 +63884,25 @@ function findPyPyVersion(versionSpec, architecture, updateEnvironment) {
 | 
			
		||||
        const binaryExtension = utils_1.IS_WINDOWS ? '.exe' : '';
 | 
			
		||||
        const pythonPath = path.join(utils_1.IS_WINDOWS ? installDir : _binDir, `python${binaryExtension}`);
 | 
			
		||||
        const pythonLocation = pypyInstall.getPyPyBinaryPath(installDir);
 | 
			
		||||
<<<<<<< HEAD
 | 
			
		||||
        if (updateEnvironment) {
 | 
			
		||||
            core.exportVariable('pythonLocation', installDir);
 | 
			
		||||
            core.exportVariable('PKG_CONFIG_PATH', pythonLocation + '/lib/pkgconfig');
 | 
			
		||||
            core.addPath(pythonLocation);
 | 
			
		||||
            core.addPath(_binDir);
 | 
			
		||||
        }
 | 
			
		||||
=======
 | 
			
		||||
        core.exportVariable('pythonLocation', installDir);
 | 
			
		||||
        // https://cmake.org/cmake/help/latest/module/FindPython.html#module:FindPython
 | 
			
		||||
        core.exportVariable('Python_ROOT_DIR', installDir);
 | 
			
		||||
        // https://cmake.org/cmake/help/latest/module/FindPython2.html#module:FindPython2
 | 
			
		||||
        core.exportVariable('Python2_ROOT_DIR', installDir);
 | 
			
		||||
        // https://cmake.org/cmake/help/latest/module/FindPython3.html#module:FindPython3
 | 
			
		||||
        core.exportVariable('Python3_ROOT_DIR', installDir);
 | 
			
		||||
        core.exportVariable('PKG_CONFIG_PATH', pythonLocation + '/lib/pkgconfig');
 | 
			
		||||
        core.addPath(pythonLocation);
 | 
			
		||||
        core.addPath(_binDir);
 | 
			
		||||
>>>>>>> 31fd3d4 (Add CMake hints)
 | 
			
		||||
        core.setOutput('python-version', 'pypy' + resolvedPyPyVersion.trim());
 | 
			
		||||
        core.setOutput('python-path', pythonPath);
 | 
			
		||||
        return { resolvedPyPyVersion, resolvedPythonVersion };
 | 
			
		||||
@ -64042,6 +64055,26 @@ function useCpythonVersion(version, architecture, updateEnvironment) {
 | 
			
		||||
                `The list of all available versions can be found here: ${installer.MANIFEST_URL}`
 | 
			
		||||
            ].join(os.EOL));
 | 
			
		||||
        }
 | 
			
		||||
<<<<<<< HEAD
 | 
			
		||||
=======
 | 
			
		||||
        core.exportVariable('pythonLocation', installDir);
 | 
			
		||||
        // https://cmake.org/cmake/help/latest/module/FindPython.html#module:FindPython
 | 
			
		||||
        core.exportVariable('Python_ROOT_DIR', installDir);
 | 
			
		||||
        // https://cmake.org/cmake/help/latest/module/FindPython2.html#module:FindPython2
 | 
			
		||||
        core.exportVariable('Python2_ROOT_DIR', installDir);
 | 
			
		||||
        // https://cmake.org/cmake/help/latest/module/FindPython3.html#module:FindPython3
 | 
			
		||||
        core.exportVariable('Python3_ROOT_DIR', installDir);
 | 
			
		||||
        core.exportVariable('PKG_CONFIG_PATH', installDir + '/lib/pkgconfig');
 | 
			
		||||
        if (utils_1.IS_LINUX) {
 | 
			
		||||
            const libPath = process.env.LD_LIBRARY_PATH
 | 
			
		||||
                ? `:${process.env.LD_LIBRARY_PATH}`
 | 
			
		||||
                : '';
 | 
			
		||||
            const pyLibPath = path.join(installDir, 'lib');
 | 
			
		||||
            if (!libPath.split(':').includes(pyLibPath)) {
 | 
			
		||||
                core.exportVariable('LD_LIBRARY_PATH', pyLibPath + libPath);
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
>>>>>>> 31fd3d4 (Add CMake hints)
 | 
			
		||||
        const _binDir = binDir(installDir);
 | 
			
		||||
        const binaryExtension = utils_1.IS_WINDOWS ? '.exe' : '';
 | 
			
		||||
        const pythonPath = path.join(utils_1.IS_WINDOWS ? installDir : _binDir, `python${binaryExtension}`);
 | 
			
		||||
 | 
			
		||||
@ -57,6 +57,12 @@ export async function findPyPyVersion(
 | 
			
		||||
  const pythonLocation = pypyInstall.getPyPyBinaryPath(installDir);
 | 
			
		||||
  if (updateEnvironment) {
 | 
			
		||||
    core.exportVariable('pythonLocation', installDir);
 | 
			
		||||
    // https://cmake.org/cmake/help/latest/module/FindPython.html#module:FindPython
 | 
			
		||||
    core.exportVariable('Python_ROOT_DIR', installDir);
 | 
			
		||||
    // https://cmake.org/cmake/help/latest/module/FindPython2.html#module:FindPython2
 | 
			
		||||
    core.exportVariable('Python2_ROOT_DIR', installDir);
 | 
			
		||||
    // https://cmake.org/cmake/help/latest/module/FindPython3.html#module:FindPython3
 | 
			
		||||
    core.exportVariable('Python3_ROOT_DIR', installDir);
 | 
			
		||||
    core.exportVariable('PKG_CONFIG_PATH', pythonLocation + '/lib/pkgconfig');
 | 
			
		||||
    core.addPath(pythonLocation);
 | 
			
		||||
    core.addPath(_binDir);
 | 
			
		||||
 | 
			
		||||
@ -70,6 +70,26 @@ export async function useCpythonVersion(
 | 
			
		||||
    );
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  core.exportVariable('pythonLocation', installDir);
 | 
			
		||||
  // https://cmake.org/cmake/help/latest/module/FindPython.html#module:FindPython
 | 
			
		||||
  core.exportVariable('Python_ROOT_DIR', installDir);
 | 
			
		||||
  // https://cmake.org/cmake/help/latest/module/FindPython2.html#module:FindPython2
 | 
			
		||||
  core.exportVariable('Python2_ROOT_DIR', installDir);
 | 
			
		||||
  // https://cmake.org/cmake/help/latest/module/FindPython3.html#module:FindPython3
 | 
			
		||||
  core.exportVariable('Python3_ROOT_DIR', installDir);
 | 
			
		||||
  core.exportVariable('PKG_CONFIG_PATH', installDir + '/lib/pkgconfig');
 | 
			
		||||
 | 
			
		||||
  if (IS_LINUX) {
 | 
			
		||||
    const libPath = process.env.LD_LIBRARY_PATH
 | 
			
		||||
      ? `:${process.env.LD_LIBRARY_PATH}`
 | 
			
		||||
      : '';
 | 
			
		||||
    const pyLibPath = path.join(installDir, 'lib');
 | 
			
		||||
 | 
			
		||||
    if (!libPath.split(':').includes(pyLibPath)) {
 | 
			
		||||
      core.exportVariable('LD_LIBRARY_PATH', pyLibPath + libPath);
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const _binDir = binDir(installDir);
 | 
			
		||||
  const binaryExtension = IS_WINDOWS ? '.exe' : '';
 | 
			
		||||
  const pythonPath = path.join(
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user