Skip to content

Commit

Permalink
Merge branch 'master' of github.com:fumeapp/fume-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
acidjazz committed May 7, 2024
2 parents 0c3f285 + ad7c52f commit 119108b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fume-cli",
"description": "fume command line interface",
"version": "2.1.2",
"version": "2.1.3",
"author": "acidjazz @acidjazz",
"bin": {
"fume": "bin/run"
Expand Down
19 changes: 12 additions & 7 deletions src/lib/deploytasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ export default class DeployTasks {

public packager = 'yarn'

public goBinary = 'main'

async checkConfig() {
try {
this.fumeConfig = yml.load(fs.readFileSync('fume.yml').toString()) as YamlConfig
Expand All @@ -79,8 +81,6 @@ export default class DeployTasks {
fse.copySync(`${__dirname}/../../src/assets/nuxt`, './.fume')
}



async modeSelect(task: any) {
const util = require('util')
const format = '0.0b'
Expand Down Expand Up @@ -312,11 +312,16 @@ exports.handler = async (event, context) => {
async goCompile(task: ListrTaskWrapper<any, any>) {
task.title = 'Compiling go binary'
await this.deployment.update('GO_COMPILE')
await execa('go', ['build', '-o', 'main', 'main.go'], {
let arch = 'amd64'
if (this.deployment.entry.project.detail && this.deployment.entry.project.detail.architecture) {
arch = this.deployment.entry.project.detail.architecture
this.goBinary = 'bootstrap'
}
await execa('go', ['build', '-o', this.goBinary, 'main.go'], {
extendEnv: true,
env: {
GOOS: 'linux',
GOARCH: 'amd64',
GOARCH: arch,
},
})
}
Expand All @@ -329,10 +334,10 @@ exports.handler = async (event, context) => {
pub: 0,
server: 0,
deps: 0,
code: fs.statSync('main').size,
code: fs.statSync(this.goBinary).size,
static: 0,
}
await execa('zip', [this.deployment.s3.code, 'main'])
await execa('zip', [this.deployment.s3.code, this.goBinary])
}

async outputArchive(task: ListrTaskWrapper<any, any>) {
Expand Down Expand Up @@ -619,7 +624,7 @@ exports.handler = async (event, context) => {
fs.unlinkSync('.env.fume')
}

if (fs.existsSync('main')) fse.removeSync('main')
if (fs.existsSync(this.goBinary)) fse.removeSync(this.goBinary)
if (fs.existsSync(this.deployment.s3.paths.code)) fse.removeSync(this.deployment.s3.paths.code)

if (this && this.deployment.s3.code && fs.existsSync(this.deployment.s3.code))
Expand Down
5 changes: 5 additions & 0 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ export interface Project {
region: string
framework: string
structure: string
detail?: ProjectDetail
}

export interface ProjectDetail {
architecture?: string
}

export interface Env {
Expand Down

0 comments on commit 119108b

Please sign in to comment.