Flink logical functions test (#954) #459
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Latest Docker Build and Push | |
on: | |
push: | |
branches: [main, v0.5] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
if: "!contains(github.event.head_commit.message, 'maven-release-plugin')" | |
steps: | |
- name: Setup Timezone | |
uses: szenius/[email protected] | |
with: | |
timezoneLinux: "America/Los_Angeles" | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build SQRL | |
env: | |
DATASQRL_TOKEN: ${{ secrets.DATASQRL_TOKEN }} | |
run: mvn -T 1 -B -U -e clean package | |
# Set up Docker | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and Push sqrl-cli Dev | |
uses: docker/build-push-action@v3 | |
with: | |
context: sqrl-tools | |
file: sqrl-tools/Dockerfile | |
push: true | |
tags: datasqrl/cmd:dev | |
platforms: linux/amd64,linux/arm64 | |
- name: Build and Push sqrl-vertx Docker | |
uses: docker/build-push-action@v3 | |
with: | |
context: sqrl-server/sqrl-server-vertx | |
file: sqrl-server/sqrl-server-vertx/Dockerfile | |
push: true | |
tags: datasqrl/sqrl-server:dev | |
platforms: linux/amd64,linux/arm64 |