Skip to content

Commit

Permalink
gaa
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Jul 29, 2024
1 parent 5525d11 commit 84f89a6
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,20 @@ jobs:
path: maestro-cli/build/install/maestro
retention-days: 1

test:
test-local:
runs-on: ubuntu-latest
if: github.repository == 'mobile-dev-inc/maestro'
needs: build

steps:
- name: Clone repository
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 8

- uses: actions/download-artifact@v4
- name: Download artifacts
uses: actions/download-artifact@v4
with:
# Name of the artifact to download.
# If unspecified, all artifacts for the run are downloaded.
Expand All @@ -59,3 +57,21 @@ jobs:

- name: Run Maestro CLI
run: ./maestro --help

test-cloud:
runs-on: ubuntu-latest

steps:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
# Name of the artifact to download.
# If unspecified, all artifacts for the run are downloaded.
# Optional.
name: maestro-${{ github.run_id }}

- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 8

0 comments on commit 84f89a6

Please sign in to comment.