This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Add archive notice to README #19
This file contains hidden or 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: data-services PR testing | |
| on: push | |
| jobs: | |
| data-services: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| pg_version: [10, 12] | |
| env: | |
| PG_VERSION: ${{ matrix.pg_version }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up docker registry | |
| env: | |
| SA_TO_USE: ${{ secrets.GCS }} | |
| run: | | |
| echo "${SA_TO_USE}" | base64 -d | docker login -u _json_key --password-stdin https://gcr.io | |
| - name: Pull base image | |
| run: docker pull gcr.io/cartodb-on-gcp-ci-testing/cartodb-postgresql-base:${{ matrix.pg_version }} | |
| - name: Checkout ci tools repository | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: CartoDB/ci-tools | |
| path: ci-tools | |
| token: ${{ secrets.CARTOFANTE_PAT }} | |
| - name: Copy ci files to root | |
| run: cp ci-tools/repos/${{ github.event.repository.name }}/* . | |
| - name: Start docker-compose services | |
| run: docker-compose -f docker-compose.yaml up -d | |
| - name: Run tests | |
| run: docker-compose -f docker-compose.yaml exec -T postgres-server bash -c "cd /data-services/geocoder/extension && make clean all install installcheck" | |
| timeout-minutes: 5 |