pgai version 0.4.0 #234
Workflow file for this run
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 branch | |
on: | |
push: | |
branches: | |
- "*/**" | |
paths-ignore: | |
- ".github/workflows/publish*.yaml" | |
- "*.md" | |
concurrency: | |
group: build-branch-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
DOCKER_REPOSITORY: timescale/timescaledb-ha | |
DOCKER_REGISTRY: docker.io | |
PG_MAJOR: 16 | |
ALL_VERSIONS: "true" | |
OSS_ONLY: "false" | |
jobs: | |
build-branch: | |
name: Build and push branch | |
runs-on: ${{ matrix.runs_on }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ amd64, arm64 ] | |
include: | |
- platform: amd64 | |
runs_on: ubuntu-22.04 | |
- platform: arm64 | |
runs_on: cloud-image-runner-arm64 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install docker (arm64 beta) | |
if: matrix.platform == 'arm64' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y ca-certificates curl acl build-essential | |
sudo install -m 0755 -d /etc/apt/keyrings | |
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc | |
sudo chmod a+r /etc/apt/keyrings/docker.asc | |
echo \ | |
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ | |
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ | |
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | |
sudo apt-get update | |
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin | |
sudo usermod -aG docker $USER | |
sudo setfacl --modify user:$USER:rw /var/run/docker.sock | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.ORG_DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.ORG_DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Setup | Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build | |
env: | |
PLATFORM: ${{ matrix.platform }} | |
run: make build-sha | |
- name: Check | |
env: | |
PLATFORM: ${{ matrix.platform }} | |
run: make check-sha | |
- name: Publish | |
env: | |
PLATFORM: ${{ matrix.platform }} | |
run: make publish-sha | |
publish-combined-manifest: | |
name: Publish branch manifest | |
needs: [ "build-branch" ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.ORG_DOCKER_HUB_USERNAME }} | |
password: ${{ secrets.ORG_DOCKER_HUB_ACCESS_TOKEN }} | |
- name: Publish combined manifest for branch | |
run: make publish-combined-sha |