2023-08-16 13:38:05 +00:00
|
|
|
/**
|
2024-01-03 10:11:33 +00:00
|
|
|
* @license
|
|
|
|
* Copyright 2023 Google Inc.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2023-08-16 13:38:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import fs from 'node:fs/promises';
|
|
|
|
|
2024-01-03 12:09:24 +00:00
|
|
|
import actions from '@actions/core';
|
|
|
|
|
|
|
|
import {testFirefoxBuildId} from '../test/build/versions.js';
|
|
|
|
|
2023-08-16 13:38:05 +00:00
|
|
|
const filePath = './test/src/versions.ts';
|
|
|
|
|
|
|
|
const getVersion = async () => {
|
|
|
|
// https://stackoverflow.com/a/1732454/96656
|
|
|
|
const response = await fetch(
|
|
|
|
'https://archive.mozilla.org/pub/firefox/nightly/latest-mozilla-central/'
|
|
|
|
);
|
|
|
|
const html = await response.text();
|
|
|
|
const re = /firefox-(.*)\.en-US\.langpack\.xpi">/;
|
|
|
|
const match = re.exec(html)[1];
|
|
|
|
return match;
|
|
|
|
};
|
|
|
|
|
|
|
|
const patch = (input, version) => {
|
|
|
|
const output = input.replace(/testFirefoxBuildId = '([^']+)';/, match => {
|
|
|
|
return `testFirefoxBuildId = '${version}';`;
|
|
|
|
});
|
|
|
|
return output;
|
|
|
|
};
|
|
|
|
|
|
|
|
const version = await getVersion();
|
|
|
|
|
2024-01-03 12:09:24 +00:00
|
|
|
if (testFirefoxBuildId !== version) {
|
|
|
|
actions.setOutput(
|
|
|
|
'commit',
|
|
|
|
`chore: update Firefox testing pin to ${version}`
|
|
|
|
);
|
|
|
|
const contents = await fs.readFile(filePath, 'utf8');
|
|
|
|
const patched = patch(contents, version);
|
|
|
|
fs.writeFile(filePath, patched);
|
|
|
|
}
|