Skip to content

Commit 364e819

Browse files
Merge pull request #394 from akv-platform/v-sedoli/set-env-by-default
Assign default value of AGENT_TOOLSDIRECTORY if not set
2 parents 782f81b + 96f494e commit 364e819

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ If you are experiencing problems while configuring Python on your self-hosted ru
357357
### Linux
358358

359359
- The Python packages that are downloaded from `actions/python-versions` are originally compiled from source in `/opt/hostedtoolcache/` with the [--enable-shared](https://github.com/actions/python-versions/blob/94f04ae6806c6633c82db94c6406a16e17decd5c/builders/ubuntu-python-builder.psm1#L35) flag, which makes them non-relocatable.
360-
- Create an environment variable called `AGENT_TOOLSDIRECTORY` and set it to `/opt/hostedtoolcache`. This controls where the runner downloads and installs tools.
360+
- By default runner downloads and install the tools to `/opt/hostedtoolcache`. The environment variable called `AGENT_TOOLSDIRECTORY` can be set to change this location.
361361
- In the same shell that your runner is using, type `export AGENT_TOOLSDIRECTORY=/opt/hostedtoolcache`.
362362
- A more permanent way of setting the environment variable is to create a `.env` file in the same directory as your runner and to add `AGENT_TOOLSDIRECTORY=/opt/hostedtoolcache`. This ensures the variable is always set if your runner is configured as a service.
363363
- Create a directory called `hostedtoolcache` inside `/opt`.

dist/setup/index.js

+8-5
Original file line numberDiff line numberDiff line change
@@ -65287,13 +65287,16 @@ function resolveVersionInput() {
6528765287
function run() {
6528865288
var _a;
6528965289
return __awaiter(this, void 0, void 0, function* () {
65290-
if ((_a = process.env.AGENT_TOOLSDIRECTORY) === null || _a === void 0 ? void 0 : _a.trim()) {
65291-
core.debug(`Python is expected to be installed into AGENT_TOOLSDIRECTORY=${process.env['AGENT_TOOLSDIRECTORY']}`);
65290+
// According to the README windows binaries do not require to be installed
65291+
// in the specific location, but Mac and Linux do
65292+
if (!utils_1.IS_WINDOWS && !((_a = process.env.AGENT_TOOLSDIRECTORY) === null || _a === void 0 ? void 0 : _a.trim())) {
65293+
if (utils_1.IS_LINUX)
65294+
process.env['AGENT_TOOLSDIRECTORY'] = '/opt/hostedtoolcache';
65295+
else
65296+
process.env['AGENT_TOOLSDIRECTORY'] = '/Users/runner/hostedtoolcache';
6529265297
process.env['RUNNER_TOOL_CACHE'] = process.env['AGENT_TOOLSDIRECTORY'];
6529365298
}
65294-
else {
65295-
core.debug(`Python is expected to be installed into RUNNER_TOOL_CACHE==${process.env['RUNNER_TOOL_CACHE']}`);
65296-
}
65299+
core.debug(`Python is expected to be installed into RUNNER_TOOL_CACHE=${process.env['RUNNER_TOOL_CACHE']}`);
6529765300
try {
6529865301
const version = resolveVersionInput();
6529965302
if (version) {

src/setup-python.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import * as path from 'path';
55
import * as os from 'os';
66
import fs from 'fs';
77
import {getCacheDistributor} from './cache-distributions/cache-factory';
8-
import {isCacheFeatureAvailable} from './utils';
8+
import {isCacheFeatureAvailable, IS_LINUX, IS_WINDOWS} from './utils';
99

1010
function isPyPyVersion(versionSpec: string) {
1111
return versionSpec.startsWith('pypy');
@@ -61,16 +61,16 @@ function resolveVersionInput(): string {
6161
}
6262

6363
async function run() {
64-
if (process.env.AGENT_TOOLSDIRECTORY?.trim()) {
65-
core.debug(
66-
`Python is expected to be installed into AGENT_TOOLSDIRECTORY=${process.env['AGENT_TOOLSDIRECTORY']}`
67-
);
64+
// According to the README windows binaries do not require to be installed
65+
// in the specific location, but Mac and Linux do
66+
if (!IS_WINDOWS && !process.env.AGENT_TOOLSDIRECTORY?.trim()) {
67+
if (IS_LINUX) process.env['AGENT_TOOLSDIRECTORY'] = '/opt/hostedtoolcache';
68+
else process.env['AGENT_TOOLSDIRECTORY'] = '/Users/runner/hostedtoolcache';
6869
process.env['RUNNER_TOOL_CACHE'] = process.env['AGENT_TOOLSDIRECTORY'];
69-
} else {
70-
core.debug(
71-
`Python is expected to be installed into RUNNER_TOOL_CACHE==${process.env['RUNNER_TOOL_CACHE']}`
72-
);
7370
}
71+
core.debug(
72+
`Python is expected to be installed into RUNNER_TOOL_CACHE=${process.env['RUNNER_TOOL_CACHE']}`
73+
);
7474
try {
7575
const version = resolveVersionInput();
7676
if (version) {

0 commit comments

Comments
 (0)