Use AWS in CI
Test Workflow / Lint and test library (pull_request) Failing after 10m12s
Details
Test Workflow / Lint and test library (pull_request) Failing after 10m12s
Details
This commit is contained in:
parent
09e7b1f176
commit
04f704f916
|
@ -22,6 +22,12 @@ jobs:
|
||||||
- name: Setup Gradle
|
- name: Setup Gradle
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
|
|
||||||
|
- name: Setup AWS Credentials
|
||||||
|
run: |
|
||||||
|
mkdir ~/.aws
|
||||||
|
echo ${{ secrets.aws_config }} | base64 -d > ~/.aws/config
|
||||||
|
echo ${{ secrets.aws_credentials }} | base64 -d > ~/.aws/credentials
|
||||||
|
|
||||||
- name: Run checks
|
- name: Run checks
|
||||||
run: ./gradlew check
|
run: ./gradlew check
|
||||||
|
|
||||||
|
|
|
@ -25,5 +25,11 @@ jobs:
|
||||||
- name: Setup Gradle
|
- name: Setup Gradle
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
|
|
||||||
|
- name: Setup AWS Credentials
|
||||||
|
run: |
|
||||||
|
mkdir ~/.aws
|
||||||
|
echo ${{ secrets.aws_config }} | base64 -d > ~/.aws/config
|
||||||
|
echo ${{ secrets.aws_credentials }} | base64 -d > ~/.aws/credentials
|
||||||
|
|
||||||
- name: Run checks
|
- name: Run checks
|
||||||
run: ./gradlew check
|
run: ./gradlew check
|
Reference in New Issue