aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-10-11 17:00:26 +0200
committerWilliam Boman <william@redwill.se>2025-02-19 09:23:19 +0100
commit3ed9abe2660b1afda08add3396f59ef01d4f4b06 (patch)
treee07423ffc10057a0f9590435607cf1502f22b14f /tests
parentrefactor!: refactor installer internals and add new Package class methods (#1... (diff)
downloadmason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.tar
mason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.tar.gz
mason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.tar.bz2
mason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.tar.lz
mason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.tar.xz
mason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.tar.zst
mason-3ed9abe2660b1afda08add3396f59ef01d4f4b06.zip
chore(compilers): remove default environment from github build compiler
Diffstat (limited to 'tests')
-rw-r--r--tests/mason-core/installer/registry/compilers/github/build_spec.lua4
-rw-r--r--tests/mason-core/installer/registry/compilers/github/release_spec.lua4
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/mason-core/installer/registry/compilers/github/build_spec.lua b/tests/mason-core/installer/registry/compilers/github/build_spec.lua
index 0adc00fe..82271fee 100644
--- a/tests/mason-core/installer/registry/compilers/github/build_spec.lua
+++ b/tests/mason-core/installer/registry/compilers/github/build_spec.lua
@@ -17,7 +17,7 @@ describe("github provider :: build :: parsing", function()
Result.success {
build = {
run = [[npm install && npm run compile]],
- env = { MASON_VERSION = "2023-03-09" },
+ env = {},
},
repo = "https://github.com/namespace/name.git",
rev = "2023-03-09",
@@ -36,7 +36,7 @@ describe("github provider :: build :: parsing", function()
build = {
target = "win_x64",
run = [[npm install]],
- env = { MASON_VERSION = "2023-03-09" },
+ env = {},
},
repo = "https://github.com/namespace/name.git",
rev = "2023-03-09",
diff --git a/tests/mason-core/installer/registry/compilers/github/release_spec.lua b/tests/mason-core/installer/registry/compilers/github/release_spec.lua
index 3cfbabc5..7ea9f42e 100644
--- a/tests/mason-core/installer/registry/compilers/github/release_spec.lua
+++ b/tests/mason-core/installer/registry/compilers/github/release_spec.lua
@@ -158,7 +158,7 @@ describe("github provider :: release :: parsing", function()
Result.success {
build = {
run = [[npm install && npm run compile]],
- env = { MASON_VERSION = "2023-03-09" },
+ env = {},
},
repo = "https://github.com/namespace/name.git",
rev = "2023-03-09",
@@ -177,7 +177,7 @@ describe("github provider :: release :: parsing", function()
build = {
target = "win_x64",
run = [[npm install]],
- env = { MASON_VERSION = "2023-03-09" },
+ env = {},
},
repo = "https://github.com/namespace/name.git",
rev = "2023-03-09",