chore(bdtopo): Corrige le script de mise à jour de la BD Topo #7742
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: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgresql: | |
| image: postgis/postgis:14-3.3-alpine | |
| env: | |
| POSTGRES_USER: dialog | |
| POSTGRES_PASSWORD: dialog | |
| POSTGRES_DB: dialog | |
| ports: | |
| - 5432:5432 | |
| mailer: | |
| image: schickling/mailcatcher | |
| ports: | |
| - 1025:1025 | |
| - 1080:1080 | |
| redis: | |
| image: redis:5-alpine | |
| options: >- | |
| --health-cmd "redis-cli ping" | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| ports: | |
| - 6379:6379 | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: nikeee/setup-pandoc@v1 | |
| with: | |
| pandoc-version: '3.1.5' | |
| - name: Setup PHP with PECL extension | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| - name: Get Composer Cache Directory | |
| id: composer-cache | |
| run: | | |
| echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-composer- | |
| - uses: actions/cache@v3 | |
| with: | |
| path: ~/.cache/node | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | |
| ${{ runner.os }}-node- | |
| - name: Init CI environment variables | |
| # HACK: Symfony won't read from 'env: { DATABASE_URL: ... }', so we need to edit | |
| # .env directly. | |
| run: | | |
| echo "DATABASE_URL=postgresql://dialog:dialog@localhost:5432/dialog" >> .env | |
| echo "BDTOPO_DATABASE_URL=${{ secrets.BDTOPO_DATABASE_URL }}" >> .env | |
| echo "BDTOPO_2025_DATABASE_URL=${{ secrets.BDTOPO_2025_DATABASE_URL }}" >> .env | |
| echo "METABASE_DATABASE_URL=postgresql://dialog:dialog@localhost:5432/dialog" >> .env | |
| echo "REDIS_URL=redis://localhost:6379" >> .env | |
| echo "APP_STORAGE_SOURCE=memory.storage" >> .env | |
| echo "MAILER_DSN=smtp://localhost:1025" >> .env | |
| - name: CI | |
| run: make ci CI=1 BIN_SHELL="" BIN_CONSOLE="php bin/console" BIN_COMPOSER="composer" | |
| - uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./coverage.xml | |
| - uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: test-logfile | |
| path: var/log/test.log | |
| retention-days: 7 |