ci: Don't attempt to open TTY #129
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: Rust | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository_owner }}/trino-joinery | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- uses: asdf-vm/actions/setup@f4acd427436df623426c29f7e3e9ea715be28396 | |
- run: rustup update stable | |
- uses: extractions/setup-just@v1 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version: "17" | |
- uses: actions/checkout@v3 | |
- name: Build & check core | |
run: just check | |
- name: Build & check Trino | |
run: | | |
just install-dev-tools | |
(cd java/trino-plugin && java --version && mvn --version && echo "JAVA_HOME: $JAVA_HOME") | |
just docker-run-trino | |
just check-trino | |
docker tag trino-joinery ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest | |
- name: Log in to the Container registry | |
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | |
with: | |
push: true | |
# For now, always push the latest `main` build as an image, until | |
# we start making versioned releases. | |
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest |