Skip to content
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6dbbc72
feat(tests): Adds testing API to capture INI entries
mfulb May 22, 2024
4b1aa4c
feat(install): Adds mapping file for env vars
mfulb May 22, 2024
60b0f93
feat(install): Start of env var inject script
mfulb May 22, 2024
8ac76b1
chore(build): Adds rules for env var injection script
mfulb May 22, 2024
8943480
feat(tests): Adds script to verify ini/envvar mappings
mfulb May 22, 2024
ae77685
chore(install): Adds rules for ini/envvar script
mfulb May 22, 2024
707292e
feat(install,tests): Adds progress for env var injection
mfulb May 24, 2024
ec92c50
fix(install): Fixes usage and message
mfulb May 24, 2024
ddc0144
fix(tests): Fixes call to inject script
mfulb May 24, 2024
4c257e8
fix(install): Handles newrelic.ini creation better
mfulb May 24, 2024
bd2f729
chore: Removes debugging output
mfulb May 24, 2024
bdd9f87
chore: Removes set -x
mfulb May 24, 2024
341b346
chore: Fixes spacing
mfulb May 24, 2024
9263753
chore: Removes trailing space
mfulb May 24, 2024
c1d55c3
fix(agent): Uses macros that works with PHP 7.x as well
mfulb May 28, 2024
e5b1583
chore(testing): Adds env var injection script tests to CI/CD
mfulb May 28, 2024
ae05cd4
chore(testing): Removes unneeded code
mfulb May 29, 2024
89719ba
fix(agent): Adds make target for installer release
mfulb Jun 4, 2024
46a93f5
fix(install): Adds proper path for running inject script
mfulb Jun 5, 2024
ca0238f
chore(installer): Renames mapping file to work with GHA limitations
mfulb Jun 5, 2024
d484f6c
chore(installer): Adds renamed mapping file
mfulb Jun 5, 2024
a10f617
fix(testing): Improves newrelic-install tests
mfulb Jun 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(testing): Removes unneeded code
  • Loading branch information
mfulb committed May 29, 2024
commit ae05cd4e808521d0544ca44cd2870c66c6c10e3f
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ function failure(string $msg) {
exit(1);
}

/* Verify input INI file exists */
// if (2 != $argc) {
// failure("Must supply existing mapping file as first argument!");
// }

$mapping_filename = "../../agent/newrelic-php-cfg-mappings.php";
include $mapping_filename;
$keys1 = array_keys(INI_ENVVAR_MAP);
Expand Down