mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
Jakub Sokołowski
aca703a011
Changes: - Adds a new `nix-gc` Makefile target for removing old packages - Moves all `nix/*.sh` files to `nix/scripts/*.sh` to make things more tidy - Renames `TARGET_OS` into `TARGET` and makes it effective only with `nix/scripts/shell.sh` - Renames `target-os` Nix argument to just `target` and makes it effective only with `shell.nix` - Drops `IN_CI_ENVIRONMENT` env variable which was useless - Drops use of `target-os` argument outside of `shell.nix` (with few exceptions, but just in naming) - `nix/platform.nix` has been made obsolete and removed - Moves the definition of all major targets to `nix/targets.nix` - Moves the definition of all major shells to `nix/shells.nix` - Makes `default.nix` and `shell.nix` just thin wrappers around `nix/default.nix` - `nix/nixpkgs-bootstrap.nix` has been moved to `nix/pkgs.nix` - All package and tool overrides have been moved to `nix/pkgs.nix` - Explicit passing of contents of `pkgs` has been removed in favor of `callPackage` doing it for us - `nix/bootstrapped-shell.nix` has been moved to `nix/tools/mkShell.nix` - A new `mergeSh` tool has been added to `pkgs` from `nix/tools/mergeSh.nix` - This tool is used to merge shells created using `mkShell` - `mobile/targets/jsbundle.nix` has been moved to `mobile/android/jsbundle/default.nix` - Moves `status-go` version sanitization to `nix/status-go/utils.nix` - Renames version to rawVersion and versionName to cleanVersion in status-go derivation - Ports nix/mobile/ios/install-pods-and-status-go.sh to Nix sub-shells - Moves adjustment of `inotify/max_user_watches` out into `scripts/inotify_fix.sh` - Makes iOS builds use the Nix version of Fastlane Signed-off-by: Jakub Sokołowski <jakub@status.im>
102 lines
3.1 KiB
Groovy
102 lines
3.1 KiB
Groovy
nix = load('ci/nix.groovy')
|
|
utils = load('ci/utils.groovy')
|
|
|
|
def plutil(name, value) {
|
|
return """
|
|
plutil -replace ${name} -string ${value} ios/StatusIm/Info.plist;
|
|
"""
|
|
}
|
|
|
|
def bundle() {
|
|
def btype = utils.getBuildType()
|
|
def target
|
|
switch (btype) {
|
|
case 'release': target = 'release'; break;
|
|
case 'testflight': target = 'release'; break;
|
|
case 'e2e': target = 'e2e'; break;
|
|
default: target = 'nightly';
|
|
}
|
|
/* configure build metadata */
|
|
nix.shell(plutil('CFBundleShortVersionString', utils.getVersion()), attr: 'shells.ios')
|
|
nix.shell(plutil('CFBundleVersion', utils.genBuildNumber()), attr: 'shells.ios')
|
|
nix.shell(plutil('CFBundleBuildUrl', currentBuild.absoluteUrl), attr: 'shells.ios')
|
|
/* the dir might not exist */
|
|
sh 'mkdir -p status-e2e'
|
|
/* build the actual app */
|
|
withCredentials([
|
|
string(credentialsId: "slave-pass-${env.NODE_NAME}", variable: 'KEYCHAIN_PASSWORD'),
|
|
string(credentialsId: 'fastlane-match-password', variable: 'MATCH_PASSWORD'),
|
|
usernamePassword(
|
|
credentialsId: 'fastlane-match-apple-id',
|
|
usernameVariable: 'FASTLANE_APPLE_ID',
|
|
passwordVariable: 'FASTLANE_PASSWORD'
|
|
),
|
|
]) {
|
|
nix.shell(
|
|
"bundle exec --gemfile=fastlane/Gemfile fastlane ios ${target}",
|
|
keep: [
|
|
'FASTLANE_DISABLE_COLORS',
|
|
'FASTLANE_PASSWORD', 'KEYCHAIN_PASSWORD',
|
|
'MATCH_PASSWORD', 'FASTLANE_APPLE_ID',
|
|
],
|
|
attr: 'shells.ios'
|
|
)
|
|
}
|
|
/* rename built file for uploads and archivization */
|
|
def pkg = ''
|
|
if (btype == 'release') {
|
|
pkg = utils.pkgFilename('release', 'ipa')
|
|
sh "cp status_appstore/StatusIm.ipa ${pkg}"
|
|
} else if (btype == 'e2e') {
|
|
pkg = utils.pkgFilename('e2e', 'app.zip')
|
|
sh "cp status-e2e/StatusIm.app.zip ${pkg}"
|
|
} else if (btype != 'testflight') {
|
|
pkg = utils.pkgFilename(btype, 'ipa')
|
|
sh "cp status-adhoc/StatusIm.ipa ${pkg}"
|
|
}
|
|
/* necessary for Diawi upload */
|
|
env.DIAWI_IPA = pkg
|
|
return pkg
|
|
}
|
|
|
|
def uploadToDiawi() {
|
|
withCredentials([
|
|
string(credentialsId: 'diawi-token', variable: 'DIAWI_TOKEN'),
|
|
]) {
|
|
nix.shell(
|
|
'bundle exec --gemfile=fastlane/Gemfile fastlane ios upload_diawi',
|
|
keep: ['FASTLANE_DISABLE_COLORS', 'DIAWI_TOKEN'],
|
|
attr: 'shells.fastlane'
|
|
)
|
|
}
|
|
diawiUrl = readFile "${env.WORKSPACE}/fastlane/diawi.out"
|
|
/* Save the URL in the build description */
|
|
currentBuild.description = "<a href=\"${diawiUrl}\">Diawi Link</a>"
|
|
return diawiUrl
|
|
}
|
|
|
|
def uploadToSauceLabs() {
|
|
def changeId = utils.getParentRunEnv('CHANGE_ID')
|
|
if (changeId != null) {
|
|
env.SAUCE_LABS_NAME = "${changeId}.app.zip"
|
|
} else {
|
|
env.SAUCE_LABS_NAME = "im.status.ethereum-e2e-${utils.gitCommit()}.app.zip"
|
|
}
|
|
withCredentials([
|
|
usernamePassword(
|
|
credentialsId: 'sauce-labs-api',
|
|
usernameVariable: 'SAUCE_USERNAME',
|
|
passwordVariable: 'SAUCE_ACCESS_KEY'
|
|
),
|
|
]) {
|
|
nix.shell(
|
|
'bundle exec --gemfile=fastlane/Gemfile fastlane ios saucelabs',
|
|
keep: ['FASTLANE_DISABLE_COLORS', 'SAUCE_ACCESS_KEY', 'SAUCE_USERNAME'],
|
|
attr: 'shells.fastlane'
|
|
)
|
|
}
|
|
return env.SAUCE_LABS_NAME
|
|
}
|
|
|
|
return this
|