Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/cross-platform-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
jobs:
cross-platform-tests:
timeout-minutes: 30
runs-on: macos-11
runs-on: macos-latest
steps:
- name: "Checkout Cross Platform Tests Repo"
uses: actions/checkout@v2
Expand Down
17 changes: 9 additions & 8 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:

confirm-public-repo:
name: "Confirm android daily cron is run from public origin repo"
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- name: "Cancel workflow"
if: ${{ github.repository != 'mParticle/mparticle-android-sdk' }}
uses: andymckay/cancel-action@0.2

create-regression-branch:
name: "Create Regression Branch"
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
needs: confirm-public-repo
env:
GITHUB_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
instrumented-tests:
name: "Instrumented Tests"
timeout-minutes: 30
runs-on: macos-11
runs-on: macos-latest
needs: create-regression-branch
steps:
- name: "Checkout future release branch"
Expand Down Expand Up @@ -100,6 +100,7 @@ jobs:
name: "Instrumented Orchestrator Tests"
timeout-minutes: 30
runs-on: macos-latest
needs: create-regression-branch
steps:
- name: "Checkout Branch"
uses: actions/checkout@v2
Expand All @@ -126,7 +127,7 @@ jobs:
unit-tests:
name: "Unit Tests"
timeout-minutes: 15
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
needs: create-regression-branch
steps:
- name: "Checkout future release branch"
Expand Down Expand Up @@ -154,7 +155,7 @@ jobs:
lint-checks:
name: "Lint Checks"
timeout-minutes: 15
runs-on: macos-11
runs-on: macos-latest
needs: create-regression-branch
steps:
- name: "Checkout Branch"
Expand Down Expand Up @@ -189,7 +190,7 @@ jobs:
update-kits:
name: "Update Kits"
needs: create-regression-branch
runs-on: macos-11
runs-on: macos-latest
env:
GIT_AUTHOR_NAME: mparticle-automation
GIT_AUTHOR_EMAIL: developers@mparticle.com
Expand All @@ -215,7 +216,7 @@ jobs:
semantic-release-dryrun:
name: "Test Semantic Release - Dry Run"
needs: [instrumented-tests, instrumented-orchestrator-tests, unit-tests, lint-checks, update-kits]
runs-on: macos-11
runs-on: macos-latest
env:
GITHUB_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
GIT_AUTHOR_NAME: mparticle-automation
Expand Down Expand Up @@ -246,7 +247,7 @@ jobs:
delete-regression-branch:
name: "Delete regression branch"
needs: semantic-release-dryrun
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.MP_SEMANTIC_RELEASE_BOT }}
GIT_AUTHOR_NAME: mparticle-automation
Expand Down