Fix path to wp-env.json file in release-checks runs (#49397)

This commit is contained in:
Adrian Moldovan 2024-07-11 18:27:35 +01:00 committed by GitHub
parent 4d68cd486e
commit e4aff57e56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 43 additions and 17 deletions

View File

@ -194,9 +194,9 @@ jobs:
env: env:
RELEASE_TAG: ${{ github.ref_name }} RELEASE_TAG: ${{ github.ref_name }}
ARTIFACT_NAME: ${{ github.ref_name == 'nightly' && 'woocommerce-trunk-nightly.zip' || 'woocommerce.zip' }} ARTIFACT_NAME: ${{ github.ref_name == 'nightly' && 'woocommerce-trunk-nightly.zip' || 'woocommerce.zip' }}
WP_ENV_CONFIG_PATH: ${{ matrix.projectPath }} # band-aid to get the path to wp-env.json for blocks e2e tests, until they're migrated to plugins/woocommerce
working-directory: ${{ matrix.projectPath }} WP_ENV_CONFIG_PATH: ${{ github.workspace }}/${{ matrix.testEnv.start == 'env:start:blocks' && 'plugins/woocommerce-blocks' || matrix.projectPath }}
run: node ./github/workflows/scripts/override-wp-env-plugins.js run: node .github/workflows/scripts/override-wp-env-plugins.js
- name: 'Start Test Environment' - name: 'Start Test Environment'
id: 'prepare-test-environment' id: 'prepare-test-environment'

View File

@ -20,24 +20,50 @@ if ( ! WP_ENV_CONFIG_PATH ) {
const artifactUrl = `https://github.com/woocommerce/woocommerce/releases/download/${ RELEASE_TAG }/${ ARTIFACT_NAME }`; const artifactUrl = `https://github.com/woocommerce/woocommerce/releases/download/${ RELEASE_TAG }/${ ARTIFACT_NAME }`;
const testEnvPlugins = { const configPath = `${ WP_ENV_CONFIG_PATH }/.wp-env.json`;
env: { console.log( `Reading ${ configPath }` );
tests: { const data = fs.readFileSync( configPath, 'utf8' );
plugins: [],
},
},
};
const data = fs.readFileSync( `${ WP_ENV_CONFIG_PATH }/.wp-env.json`, 'utf8' );
const wpEnvConfig = JSON.parse( data ); const wpEnvConfig = JSON.parse( data );
testEnvPlugins.env.tests.plugins = wpEnvConfig.env.tests.plugins;
const currentDirEntry = testEnvPlugins.env.tests.plugins.indexOf( '.' ); const overrideConfig = {};
if ( currentDirEntry !== -1 ) { if ( wpEnvConfig.plugins ) {
testEnvPlugins.env.tests.plugins[ currentDirEntry ] = artifactUrl; overrideConfig.plugins = wpEnvConfig.plugins;
} }
if ( wpEnvConfig.env?.tests?.plugins ) {
overrideConfig.env = {
tests: {
plugins: wpEnvConfig.env.tests.plugins,
},
};
}
const entriesToReplace = [ '.', '../woocommerce' ];
for ( const entry of entriesToReplace ) {
// Search and replace in root plugins
let found = overrideConfig.plugins.indexOf( entry );
if ( found >= 0 ) {
console.log(
`Replacing ${ entry } with ${ artifactUrl } in root plugins`
);
overrideConfig.plugins[ found ] = artifactUrl;
}
// Search and replace in test env plugins
found = overrideConfig.env?.tests?.plugins?.indexOf( entry );
if ( found >= 0 ) {
console.log(
`Replacing ${ entry } with ${ artifactUrl } in env.tests.plugins`
);
overrideConfig.env.tests.plugins[ found ] = artifactUrl;
}
}
const overrideConfigPath = `${ WP_ENV_CONFIG_PATH }/.wp-env.override.json`;
console.log( `Saving ${ overrideConfigPath }` );
fs.writeFileSync( fs.writeFileSync(
`${ WP_ENV_CONFIG_PATH }/.wp-env.override.json`, overrideConfigPath,
JSON.stringify( testEnvPlugins, null, 2 ) JSON.stringify( overrideConfig, null, 2 )
); );