-
Notifications
You must be signed in to change notification settings - Fork 101
56 lines (56 loc) · 1.59 KB
/
test-publish-main.yaml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Test and Publish Main
on:
push:
branches:
- "main"
workflow_dispatch:
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
SKIP_WEBSOCKET_TEST: "yes"
jobs:
run-tests:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
# All three major OS types are supported
os: [windows-latest, macos-latest, ubuntu-latest]
# RingoJS supports all current LTS releases:
java: ["11", "17"]
name: ${{ matrix.os }} - JDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: "temurin"
java-version: ${{ matrix.java }}
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute build and run all tests
run: ./gradlew build
publish-docker:
runs-on: ubuntu-latest
needs: run-tests
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/[email protected]
with:
platforms: all
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v2
with:
context: ./docker/
platforms: linux/amd64,linux/arm64
file: ./docker/Dockerfile
tags: ringojs/ringojs:latest
push: true