chore: update bimdata-api-client to 10.9.1 #237
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
# This file is generated by ansible | |
name: Test, build and deploy | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: [self-hosted, common] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: psycopg2 prerequisites | |
run: | | |
sudo apt-get update | |
sudo apt-get install libpq-dev -y | |
- name: Install poetry | |
uses: snok/install-poetry@v1 | |
- name: Install library | |
run: poetry install --no-interaction | |
env: | |
C_INCLUDE_PATH: "/usr/include/python3.10" | |
- name: Run tests | |
run: > | |
poetry run pytest | |
env: | |
TEST_DB_HOST: postgres | |
TEST_DB_PORT: 5432 | |
TEST_DB_NAME: platform-back-${{ github.run_id }} | |
TEST_DB_USER: bimdata | |
TEST_DB_PASSWORD: bimdata | |
build-and-push: | |
runs-on: [self-hosted, common] | |
needs: [test] | |
if: contains(' | |
refs/heads/develop | |
refs/heads/release | |
refs/heads/master | |
refs/heads/main' | |
, github.ref) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to BIMData Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: docker-registry.bimdata.io | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASS }} | |
- id: tag | |
name: Get docker tag | |
uses: bimdata/actions/get-docker-tag@v2 | |
with: | |
branch: ${{ github.ref }} | |
- name: Build and push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
pull: true | |
tags: | | |
docker-registry.bimdata.io/bimdata/platform_back:${{ github.sha }} | |
docker-registry.bimdata.io/bimdata/platform_back:${{ env.tag }} | |
deploy: | |
runs-on: [self-hosted, common] | |
needs: build-and-push | |
steps: | |
- name: Login to BIMData Docker Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: docker-registry.bimdata.io | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASS }} | |
- id: tag | |
name: Get docker tag | |
uses: bimdata/actions/get-docker-tag@v2 | |
with: | |
branch: ${{ github.ref }} | |
- name: Deploy on ${{ env.tag }} | |
uses: bimdata/actions/deployment@v2 | |
with: | |
inventory: ${{ env.tag }} | |
app: platform-back | |
vault-pass: ${{ secrets.ANSIBLE_VAULT_PASSWD }} |