Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create linux executable #13

Open
3 tasks
stefanjudis opened this issue Jul 22, 2016 · 3 comments
Open
3 tasks

create linux executable #13

stefanjudis opened this issue Jul 22, 2016 · 3 comments
Assignees

Comments

@stefanjudis
Copy link
Member

stefanjudis commented Jul 22, 2016

This includes:

  • modifying the root package.json to include several build tasks
  • modifying release.js to read out env variable and build for targets
  • if no specific target was set via env variable all available targets should be created ( Promise.all )

I created a linux distribution already by making following changes.

function build () {
  require( '../config' ).getPackConfig( ( error, config ) => {
    builder.build( {
      targets     : Platform.LINUX.createTarget(),
      devMetadata : {
        build : config.build
      }
    } )
      .then( () => {
        console.log( 'Build(s) successful!' );
        console.log( 'DONE\n' );
      } )
      .catch( error => {
        console.error( error );
      } );
  } );
}

Help would be great here. :) .cc @kaesetoast

@stefanjudis stefanjudis added this to the v1.0.0-beta milestone Jul 22, 2016
@kaesetoast kaesetoast self-assigned this Jul 24, 2016
@stefanjudis stefanjudis removed this from the v1.0.0-beta milestone Jul 25, 2016
@DanielRuf
Copy link

Hi @kaesetoast, would you still be interested to help with this issue?

@kaesetoast
Copy link
Collaborator

Hi @DanielRuf. Damn, sorry, I totally forgot about this! Yes, sure. I'll have some spare time this weekend, I'll be happy to give it a crack :-)

@DanielRuf
Copy link

No problem. Let us know if you need any help then and when you have a PR that we can review.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants