-
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: run an example code on CI as a quick functionality check (#720)
* chore: update ruby code * chore: remove userland * ci: add fail fast fail * add a func yml * add android * tune for andorid * tune command name * add ?
- Loading branch information
Showing
13 changed files
with
189 additions
and
23 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,156 @@ | ||
name: Run quick functionality check | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- 'driver/**' | ||
branches: [ main ] | ||
pull_request: | ||
paths: | ||
- 'driver/**' | ||
branches: [ main ] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ios_test: | ||
runs-on: macos-14 | ||
|
||
env: | ||
XCODE_VERSION: 15.3 | ||
IOS_DEVICE_NAME: iPhone 15 Plus | ||
IOS_VERSION: 17.4 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
|
||
- name: Select Xcode | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: ${{ env.XCODE_VERSION }} | ||
- run: defaults write com.apple.iphonesimulator PasteboardAutomaticSync -bool false | ||
|
||
- uses: futureware-tech/simulator-action@v3 | ||
with: | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-arm64-Readme.md | ||
model: ${{ env.IOS_DEVICE_NAME }} | ||
os_version: ${{ env.IOS_VERSION }} | ||
|
||
# Start Appium | ||
- run: npm install -g appium | ||
- run: | | ||
npm install | ||
nohup appium --log-timestamp --log-no-colors > appium.log & | ||
working-directory: | ||
driver | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.2 | ||
- name: Install dependencies | ||
run: bundle install | ||
working-directory: example/ruby | ||
- name: Run tests | ||
run: ruby example_sample2_ios.rb | ||
working-directory: example/ruby | ||
|
||
- name: Save server output | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: appium-ios.log | ||
path: driver/appium.log | ||
|
||
android_test: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
API_LEVEL: 34 | ||
ARCH: x86_64 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
|
||
# Start Appium | ||
- run: npm install -g appium | ||
- run: | | ||
npm install | ||
nohup appium --log-timestamp --log-no-colors > appium.log & | ||
working-directory: | ||
driver | ||
- name: Enable KVM group perms | ||
run: | | ||
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | ||
sudo udevadm control --reload-rules | ||
sudo udevadm trigger --name-match=kvm | ||
- name: AVD cache | ||
uses: actions/cache@v3 | ||
id: avd-cache | ||
with: | ||
path: | | ||
~/.android/avd/* | ||
~/.android/adb* | ||
key: avd-${{ env.API_LEVEL }} | ||
- name: create AVD and generate snapshot for caching | ||
if: steps.avd-cache.outputs.cache-hit != 'true' | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: ${{ env.API_LEVEL }} | ||
arch: ${{ env.ARCH }} | ||
target: google_apis | ||
force-avd-creation: false | ||
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | ||
disable-animations: false | ||
script: echo "Generated AVD snapshot for caching." | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.2 | ||
- name: Install dependencies | ||
run: bundle install | ||
working-directory: example/ruby | ||
|
||
- name: Run tests | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
with: | ||
api-level: ${{ env.API_LEVEL }} | ||
arch: ${{ env.ARCH }} | ||
script: ruby example/ruby/example_sample2.rb | ||
target: google_apis | ||
profile: Nexus 5X | ||
disable-spellchecker: true | ||
disable-animations: true | ||
env: | ||
ANDROID_SDK_VERSION: ${{ env.API_LEVEL }} | ||
APPIUM_DRIVER: ${{matrix.test_targets.automation_name}} | ||
IGNORE_VERSION_SKIP: true | ||
CI: true | ||
|
||
- name: Save server output | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@master | ||
with: | ||
name: appium-android.log | ||
path: driver/appium.log |
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
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
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
], | ||
author='Kazuaki Matsuo', | ||
author_email='[email protected]', | ||
url='https://github.com/appium-userland/appium-flutter-driver', | ||
url='https://github.com/appium/appium-flutter-driver', | ||
packages=find_packages(include=['appium_flutter_finder*']), | ||
license='MIT', | ||
classifiers=[ | ||
|