💥 Remove artifact builds

This commit is contained in:
trickypr 2021-11-27 11:40:46 +11:00
parent e9bef4988c
commit 79aa188d27
4 changed files with 4 additions and 170 deletions

View file

@ -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')
}