mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-10 10:15:31 +02:00
💥 Remove artifact builds
This commit is contained in:
parent
e9bef4988c
commit
79aa188d27
4 changed files with 4 additions and 170 deletions
|
@ -66,12 +66,7 @@ const applyConfig = async (os: string, arch: string) => {
|
|||
|
||||
customConfig = stringTemplate(customConfig, templateOptions)
|
||||
|
||||
// TODO: Disable optimization when running artifact builds, as they are not compatible
|
||||
const internalConfig = `# Internally defined by melon\n${
|
||||
config.buildOptions.artifactBuilds
|
||||
? '# Artifact builds (buildOptions.artifactBuilds) \nac_add_options --enable-debug'
|
||||
: ''
|
||||
}`
|
||||
const internalConfig = `# Internally defined by melon\n`
|
||||
|
||||
const mergedConfig =
|
||||
`# This file is automatically generated. You should only modify this if you know what you are doing!\n\n` +
|
||||
|
@ -107,7 +102,7 @@ const genericBuild = async (os: string, tier: string, fast = false) => {
|
|||
|
||||
const buildOptions = ['build']
|
||||
|
||||
if (config.buildOptions.artifactBuilds || fast) {
|
||||
if (fast) {
|
||||
buildOptions.push('faster')
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue