This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cypress.Commands.add('loginOkta', () => { | |
const optionsSessionToken = { | |
method: 'POST', | |
url: Cypress.env('session_token_url'), | |
body: { | |
username: Cypress.env('username'), | |
password: Cypress.env('password'), | |
options: { | |
warnBeforePasswordExpired: 'true' | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/compiler/build.gradle b/compiler/build.gradle | |
index 60d3a436f..409df7a03 100644 | |
--- a/compiler/build.gradle | |
+++ b/compiler/build.gradle | |
@@ -31,6 +31,7 @@ def addLibraryIfNotLinked = { libName, argList -> | |
} | |
def String arch = rootProject.hasProperty('targetArch') ? rootProject.targetArch : osdetector.arch | |
+// arch = arch.replace('osx_arm-v8', 'osx_aarch64') | |
def boolean vcDisable = rootProject.hasProperty('vcDisable') ? rootProject.vcDisable : false |