name: Common Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
jobs:
|
|
build:
|
|
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
otp_version: [19, 20, 21, 22, 23]
|
|
os: [ubuntu-latest]
|
|
|
|
container:
|
|
image: erlang:${{ matrix.otp_version }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Compile
|
|
run: ./bootstrap
|
|
- name: CT tests
|
|
run: ./rebar3 ct
|
|
|
|
- name: Configure AWS credentials
|
|
if: matrix.otp_version == 19
|
|
uses: aws-actions/configure-aws-credentials@v1
|
|
with:
|
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
aws-region: us-east-1
|
|
|
|
- name: Copy rebar3 escript to S3
|
|
if: matrix.otp_version == 19
|
|
run: |
|
|
aws s3 sync ./rebar3 s3://rebar3-nightly
|