forked from appium/appium-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update electron-builder and Azure pipeline configurations (appium…
…#1404) * ci: update azure VM images * ci: update Node for Azure * ci: always publish in x64 and arm64 * ci: move electron-builder config into own file for clarity * ci: remove electron-builder nsisWeb option nsis-web target is not used * ci: slightly adjust common package options * ci: remove electron-build filepaths already included by default * ci: use common artifact name format * ci: omit repeating default paths to app icon * ci: build separate artifacts for both mac architectures * ci: add tar.gz target for Linux * ci: add entitlements file for mac signing * chore: fix syntax for Azure UseNode task
- Loading branch information
Showing
5 changed files
with
65 additions
and
86 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.security.cs.allow-jit</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"productName": "Appium Inspector", | ||
"appId": "io.appium.inspector", | ||
"asar": true, | ||
"directories": { | ||
"output": "release" | ||
}, | ||
"files": ["dist/", "main.js", "main.js.map"], | ||
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}", | ||
"fileAssociations": [ | ||
{ | ||
"ext": "appiumsession", | ||
"name": "Appium Session", | ||
"role": "Editor" | ||
} | ||
], | ||
"mac": { | ||
"category": "public.app-category.developer-tools" | ||
}, | ||
"dmg": { | ||
"contents": [ | ||
{ | ||
"x": 410, | ||
"y": 150, | ||
"type": "link", | ||
"path": "/Applications" | ||
}, | ||
{ | ||
"x": 130, | ||
"y": 150, | ||
"type": "file" | ||
} | ||
] | ||
}, | ||
"win": { | ||
"target": ["nsis", "zip"] | ||
}, | ||
"nsis": { | ||
"oneClick": false | ||
}, | ||
"linux": { | ||
"target": ["AppImage", "tar.gz"], | ||
"category": "Development" | ||
}, | ||
"publish": { | ||
"provider": "github", | ||
"owner": "appium", | ||
"vPrefixedTagName": true | ||
} | ||
} |
This file contains 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