|
|
@ -18,6 +18,10 @@ jobs: |
|
|
displayName: 'Get Resolution' |
|
|
displayName: 'Get Resolution' |
|
|
|
|
|
|
|
|
- script: | |
|
|
- script: | |
|
|
|
|
|
arch="x64" |
|
|
|
|
|
if [[ $(uname -m) == 'arm64' ]]; then |
|
|
|
|
|
arch="arm64" |
|
|
|
|
|
fi |
|
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer |
|
|
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer |
|
|
pkill node |
|
|
pkill node |
|
|
appium > appium.out & |
|
|
appium > appium.out & |
|
|
@ -26,7 +30,7 @@ jobs: |
|
|
rm -rf $(osascript -e "POSIX path of (path to application id \"net.avaloniaui.avalonia.integrationtestapp\")") |
|
|
rm -rf $(osascript -e "POSIX path of (path to application id \"net.avaloniaui.avalonia.integrationtestapp\")") |
|
|
pkill IntegrationTestApp |
|
|
pkill IntegrationTestApp |
|
|
./samples/IntegrationTestApp/bundle.sh |
|
|
./samples/IntegrationTestApp/bundle.sh |
|
|
open -n ./samples/IntegrationTestApp/bin/Debug/net7.0/osx-arm64/publish/IntegrationTestApp.app |
|
|
open -n ./samples/IntegrationTestApp/bin/Debug/net7.0/osx-$arch/publish/IntegrationTestApp.app |
|
|
pkill IntegrationTestApp |
|
|
pkill IntegrationTestApp |
|
|
displayName: 'Build IntegrationTestApp' |
|
|
displayName: 'Build IntegrationTestApp' |
|
|
|
|
|
|
|
|
|