Skip to content

Commit

Permalink
Fix release pipeline (#421)
Browse files Browse the repository at this point in the history
* add fat ios binary for mac m1 and amd64 for now
  • Loading branch information
danielpaulus authored Jul 2, 2024
1 parent e04bd84 commit 19fb018
Show file tree
Hide file tree
Showing 3 changed files with 259 additions and 31 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: Build
run: |
((Get-Content -path main.go -Raw) -replace "local-build","${{ steps.create_release.outputs.current_tag }}") | Set-Content -Path main.go
((Get-Content -path main.go -Raw) -replace "local-build","${{ steps.create_release.outputs.current_tag }}") | Set-Content -Path main.go
mkdir bin
go build -ldflags="-s -w" -o bin/ios.exe
"${{ steps.create_release.outputs.current_tag }}" | Out-File -Encoding utf8NoBOM release_tag -NoNewline
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- uses: AButler/[email protected]
with:
files: '*.zip'
files: "*.zip"
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ env.release_tag }}

Expand All @@ -141,12 +141,13 @@ jobs:
run: |
mkdir ./npm_publish/dist
mkdir ./npm_publish/dist/go-ios-darwin-amd64_darwin_amd64
mkdir ./npm_publish/dist/go-ios-darwin-arm64_darwin_arm64
mkdir ./npm_publish/dist/go-ios-linux-amd64_linux_amd64
mkdir ./npm_publish/dist/go-ios-windows-amd64_windows_amd64
cp ./mac-bin/ios ./npm_publish/dist/go-ios-darwin-fat_darwin_fat/ios
cp ./mac-bin/ios ./npm_publish/dist/go-ios-darwin-amd64_darwin_amd64/ios
cp ./mac-bin/ios ./npm_publish/dist/go-ios-darwin-arm64_darwin_arm64/ios
cp ./win-bin/ios.exe ./npm_publish/dist/go-ios-windows-amd64_windows_amd64/ios.exe
cp ./bin/ios ./npm_publish/dist/go-ios-linux-amd64_linux_amd64/ios
cp README.md ./npm_publish/README.md
echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" >> ~/.npmrc
cd npm_publish
sed -i 's/\"local-build\"/\"${{ env.release_tag }}\"/' package.json
Expand Down
57 changes: 30 additions & 27 deletions npm_publish/package.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
{
"name": "go-ios",
"version": "local-build",
"description": "Provide a stable and production ready opensource solution to automate iOS devices on Linux, Windows and macOS.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/danielpaulus/go-ios.git"
},
"author": "Daniel Paulus",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielpaulus/go-ios/issues"
},
"homepage": "https://github.com/danielpaulus/go-ios#readme",
"bin": {
"go-ios": "./index.js"
},
"files": [
"dist",
"index.js",
"README.md"
],
"engines": {
"node": ">=18",
"npm": ">=8"
}
}
"name": "go-ios",
"version": "local-build",
"description": "Provide a stable and production ready opensource solution to automate iOS device on Linux, Windows and Mac OS X.",
"main": "index.js",
"scripts": {
"postinstall": "node postinstall.js install",
"preuninstall": "node postinstall.js uninstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielpaulus/go-ios.git"
},
"author": "Daniel Paulus",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielpaulus/go-ios/issues"
},
"homepage": "https://github.com/danielpaulus/go-ios#readme",
"goBinary": {
"name": "ios",
"path": "./bin"
},
"files": [
"dist",
"postinstall.js"
],
"dependencies": {
"mkdirp": "^1.0.4"
}
}
224 changes: 224 additions & 0 deletions npm_publish/postinstall.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
#!/usr/bin/env node

"use strict";
// Thanks to author of https://github.com/sanathkr/go-npm, we were able to modify his code to work with private packages
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };

var path = require('path'),
mkdirp = require('mkdirp'),
fs = require('fs');

// Mapping from Node's `process.arch` to Golang's `$GOARCH`
var ARCH_MAPPING = {
"ia32": "386",
"x64": "amd64",
"arm": "arm"
};

// Mapping between Node's `process.platform` to Golang's
var PLATFORM_MAPPING = {
"darwin": "darwin",
"linux": "linux",
"win32": "windows",
"freebsd": "freebsd"
};

async function getInstallationPath() {

// `npm bin` will output the path where binary files should be installed

const value = null //await execShellCommand("npm bin -g");


var dir = null;
if (!value || value.length === 0) {

// We couldn't infer path from `npm bin`. Let's try to get it from
// Environment variables set by NPM when it runs.
// npm_config_prefix points to NPM's installation directory where `bin` folder is available
// Ex: /Users/foo/.nvm/versions/node/v4.3.0
var env = process.env;
if (env && env.npm_config_prefix) {
dir = path.join(env.npm_config_prefix, "bin");
}
} else {
dir = value.trim();
}
//throw (dir)
///Users/danielpaulus/.nvm/versions/node/v19.7.0/lib/node_modules/go-ios/node_modules/.bin
await mkdirp(dir);
return dir;
}

async function verifyAndPlaceBinary(binName, binPath, callback) {
if (!fs.existsSync(path.join(binPath, binName))) return callback('Downloaded binary does not contain the binary specified in configuration - ' + binName);

// Get installation path for executables under node
const installationPath = await getInstallationPath();
// Copy the executable to the path
fs.rename(path.join(binPath, binName), path.join(installationPath, binName), (err) => {
if (!err) {
console.info("Installed cli successfully");
callback(null);
} else {
callback(err);
}
});
}

function validateConfiguration(packageJson) {

if (!packageJson.version) {
return "'version' property must be specified";
}

if (!packageJson.goBinary || _typeof(packageJson.goBinary) !== "object") {
return "'goBinary' property must be defined and be an object";
}

if (!packageJson.goBinary.name) {
return "'name' property is necessary";
}

if (!packageJson.goBinary.path) {
return "'path' property is necessary";
}
}

function parsePackageJson() {
if (process.arch !== "arm64" && process.platform !== "darwin") {
if (!(process.arch in ARCH_MAPPING)) {
console.error("Installation is not supported for this architecture: " + process.arch);
return;
}
}

if (!(process.platform in PLATFORM_MAPPING)) {
console.error("Installation is not supported for this platform: " + process.platform);
return;
}

var packageJsonPath = path.join(".", "package.json");
if (!fs.existsSync(packageJsonPath)) {
console.error("Unable to find package.json. " + "Please run this script at root of the package you want to be installed");
return;
}

var packageJson = JSON.parse(fs.readFileSync(packageJsonPath));
var error = validateConfiguration(packageJson);
if (error && error.length > 0) {
console.error("Invalid package.json: " + error);
return;
}

// We have validated the config. It exists in all its glory
var binName = packageJson.goBinary.name;
var binPath = packageJson.goBinary.path;
var version = packageJson.version;
if (version[0] === 'v') version = version.substr(1); // strip the 'v' if necessary v0.0.1 => 0.0.1

// Binary name on Windows has .exe suffix
if (process.platform === "win32") {
binName += ".exe";
}


return {
binName: binName,
binPath: binPath,
version: version
};
}

/**
* Reads the configuration from application's package.json,
* validates properties, copied the binary from the package and stores at
* ./bin in the package's root. NPM already has support to install binary files
* specific locations when invoked with "npm install -g"
*
* See: https://docs.npmjs.com/files/package.json#bin
*/
var INVALID_INPUT = "Invalid inputs";
async function install(callback) {

var opts = parsePackageJson();
if (!opts) return callback(INVALID_INPUT);
mkdirp.sync(opts.binPath);
console.info(`Copying the relevant binary for your platform ${process.platform}`);
let src = `./dist/go-ios-${PLATFORM_MAPPING[process.platform]}-${ARCH_MAPPING[process.arch]}_${PLATFORM_MAPPING[process.platform]}_${ARCH_MAPPING[process.arch]}/${opts.binName}`;
if (process.arch === "arm64" && process.platform === "darwin") {
console.log("using amd64 build on M1 mac")
src = `./dist/go-ios-${process.platform}-amd64_${process.platform}_amd64/${opts.binName}`;
}

if (process.arch === "ia32" && process.platform === "w32") {
src = `./dist/go-ios-${PLATFORM_MAPPING[process.platform]}-amd64_${PLATFORM_MAPPING[process.platform]}_amd64/${opts.binName}`;
}

if (PLATFORM_MAPPING[process.platform] === "windows") {
let cmd = `copy ${src} ${opts.binPath}/${opts.binName}`
cmd = cmd.replace(/\//g, "\\")
await execShellCommand(cmd);
} else {
await execShellCommand(`cp ${src} ${opts.binPath}/${opts.binName}`);
}

await verifyAndPlaceBinary(opts.binName, opts.binPath, callback);
console.log("\x1b[32m", "go-ios installed, run 'ios --help' for details\n\n")
}

async function uninstall(callback) {
var opts = parsePackageJson();
try {
const installationPath = await getInstallationPath();
fs.unlink(path.join(installationPath, opts.binName), (err) => {
if (err) {
return callback(err);
}
});
} catch (ex) {
// Ignore errors when deleting the file.
}
console.info("Uninstalled cli successfully");
return callback(null);
}

// Parse command line arguments and call the right method
var actions = {
"install": install,
"uninstall": uninstall
};
/**
* Executes a shell command and return it as a Promise.
* @param cmd {string}
* @return {Promise<string>}
*/
function execShellCommand(cmd) {
const exec = require('child_process').exec;
return new Promise((resolve, reject) => {
exec(cmd, (error, stdout, stderr) => {
if (error) {
console.warn(error);
}
resolve(stdout ? stdout : stderr);
});
});
}

var argv = process.argv;
if (argv && argv.length > 2) {
var cmd = process.argv[2];
if (!actions[cmd]) {
console.log("Invalid command. `install` and `uninstall` are the only supported commands");
process.exit(1);
}

actions[cmd](function (err) {
if (err) {
console.error(err);
process.exit(1);
} else {
process.exit(0);
}
});
}

0 comments on commit 19fb018

Please sign in to comment.