-
Notifications
You must be signed in to change notification settings - Fork 6
28 lines (26 loc) · 1017 Bytes
/
runCompatibilityTest.yml
File metadata and controls
28 lines (26 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Run Compatibility Test
on:
repository_dispatch:
types: RunCompatibilityTest
jobs:
stackTest:
name: Compatibility test for service:${{ github.event.client_payload.service }} version:${{ github.event.client_payload.version }} pluginSha:${{ github.event.client_payload.sha }}
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.client_payload.sha }}
- name: set up java
uses: actions/setup-java@v1
with:
java-version: 11
- name: run tests
uses: armory-io/plugin-test-runner@main
env:
ORG_GRADLE_PROJECT_artifactory_user: ${{ secrets.ARTIFACTORY_USER }}
ORG_GRADLE_PROJECT_artifactory_password: ${{ secrets.ARTIFACTORY_TOKEN }}
with:
service: ${{ github.event.client_payload.service }}
version: ${{ github.event.client_payload.version }}
plugin_sha: ${{ github.event.client_payload.sha }}