Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,6 @@ jobs:
appium driver install uiautomator2
appium driver install espresso

- name: Restore dependencies
run: dotnet restore Appium.Net.sln

- name: Build solution
run: dotnet build Appium.Net.sln --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore

- name: Create test environment file
run: |
cat > ./test/integration/env.json << 'EOF'
Expand All @@ -110,6 +104,12 @@ jobs:
}
EOF

- name: Restore dependencies
run: dotnet restore Appium.Net.sln

- name: Build solution
run: dotnet build Appium.Net.sln --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore

- name: Run Android functional tests
uses: reactivecircus/android-emulator-runner@v2
with:
Expand Down Expand Up @@ -194,12 +194,6 @@ jobs:
wait_for_boot: true
shutdown_after_job: false

- name: Restore dependencies
run: dotnet restore Appium.Net.sln

- name: Build solution
run: dotnet build Appium.Net.sln --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore

- name: Create test environment file
run: |
cat > ./test/integration/env.json << 'EOF'
Expand All @@ -210,6 +204,12 @@ jobs:
}
EOF

- name: Restore dependencies
run: dotnet restore Appium.Net.sln

- name: Build solution
run: dotnet build Appium.Net.sln --configuration ${{ env.BUILD_CONFIGURATION }} --no-restore

- name: Run iOS functional tests
env:
LOCAL_PREBUILT_WDA: ${{ github.workspace }}/wda/WebDriverAgentRunner-Runner.app
Expand Down
Loading