Update rust to 1.70.0 #373
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: Build compiler image | |
on: | |
push: | |
env: | |
DOCKER_HUB_URL: docker.io/timescale/timescaledb-ha | |
INSTALL_METHOD: docker-ha | |
TIMESCALE_CLOUDUTILS: "v1.1.11" | |
TIMESCALE_HOT_FORGE: "v0.1.39" | |
TIMESCALE_PATRONI_K8S_SYNC: "v0.1.2" | |
TIMESCALE_OOM_GUARD: "v1.4.2" | |
TIMESCALE_TSDB_ADMIN: "1.0.1" | |
TIMESCALE_TS_STAT_STATEMENTS: "0.0.3" | |
# This compiler image is used to create patches in other environments. | |
# Some of these patches still require PostgreSQL 12 support, therefore, | |
# we include 4 versions for the compiler image | |
PG_VERSIONS: "15 14 13 12" | |
jobs: | |
build-image: | |
name: Build the compiler Docker Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.ORG_DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.ORG_DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Publish Compiler Image to Docker Hub | |
env: | |
GIT_REV: ${{ steps.tag_name.outputs.GIT_TAG }} | |
PRIVATE_REPO_TOKEN: ${{ secrets.API_TOKEN_GITHUB_PACKAGE }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: | | |
DOCKER_PUBLISH_URLS="${DOCKER_HUB_URL}" make publish-compiler | |
- name: List docker Images | |
run: | | |
make list-images |