Symfony5 工作流程与数据库和迁移的 githubaction 问题

发布于 2025-01-14 04:47:06 字数 848 浏览 3 评论 0原文

目前,我正在尝试使用 GitHub 操作设置工作流程。 我从 https://github.com/ 中获取示例shivammathur/setup-php/blob/master/examples/symfony-mysql.yml

我的 ci.yml 是:

name: phpunit
on: [push]

jobs:

  tests :
    name: Running functional and unit test
    runs-on: ubuntu-20.04
    services:
      mysql:
        image: mysql:5.7
        env:
          MYSQL_ALLOW_EMPTY_PASSWORD: false
          MYSQL_ROOT_PASSWORD: symfony
          MYSQL_DATABASE: symfony
        ports:
          - 3306/tcp
        options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
    strategy:
      fail-fast: true
      matrix:
        php-versions: ['7.4-apache']

    steps: 
      # —— Setup Github actions 
              

Currently, I'm trying to set up a workflow with GitHub action.
I took example from https://github.com/shivammathur/setup-php/blob/master/examples/symfony-mysql.yml

My ci.yml is:

name: phpunit
on: [push]

jobs:

  tests :
    name: Running functional and unit test
    runs-on: ubuntu-20.04
    services:
      mysql:
        image: mysql:5.7
        env:
          MYSQL_ALLOW_EMPTY_PASSWORD: false
          MYSQL_ROOT_PASSWORD: symfony
          MYSQL_DATABASE: symfony
        ports:
          - 3306/tcp
        options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
    strategy:
      fail-fast: true
      matrix:
        php-versions: ['7.4-apache']

    steps: 
      # —— Setup Github actions ???? —————————————————————————————————————————————
      # https://github.com/actions/checkout (official)
        - name: Checkout
          uses: actions/checkout@v2

      # https://github.com/shivammathur/setup-php (community)
        - name: Setup PHP, extensions and composer with shivammathur/setup-php
          uses: shivammathur/setup-php@v2
          with:
            php-version: ${{ matrix.php-versions }}
            extensions: mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, filter, gd, iconv, json, mbstring, mysqli
          env:
            update: true

        - name: Check PHP Version
          run: php -v

        
          # —— Composer ????‍️ —————————————————————————————————————————————————————————
        - name: Validate composer.json and composer.lock
          run: composer validate

        - name: Get composer cache directory
          id: composer-cache
          run: echo "::set-output name=dir::$(composer config cache-files-dir)"

        - name: Cache composer dependencies
          uses: actions/cache@v1
          with:
            path: ${{ steps.composer-cache.outputs.dir }}
            key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
            restore-keys: ${{ runner.os }}-composer-

        - name: Install Composer dependencies
          run: composer install --no-progress --prefer-dist --optimize-autoloader

        - run: composer require symfony/runtime 

        - name: Run Migration && Load Fixtures
          run: |
            composer require --dev symfony/orm-pack
            php bin/console doctrine:database:drop --if-exists --force --env=test
            php bin/console doctrine:database:create --if-not-exists --env=test
            php bin/console doctrine:schema:update --env=test --force || echo "No migrations found or schema update failed"
            php bin/console doctrine:migrations:migrate --env=test || echo "No migrations found or migration failed"
            php bin/console doctrine:fixtures:load --no-interaction
          env:
           DATABASE_URL: mysql://root:[email protected]:${{ job.services.mysql.ports['3306'] }}/symfony
            
        

         ## —— NPM ???? ————————————————————————————————————————————————————————————
        - name: npm install
          uses: actions/setup-node@v2
          with:
            node-version: '14'
            #registry-url: npm.fontawesome.com
        - run: npm install
            #env:
          #NODE_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}

        - run: npm run build
        - run: php bin/phpunit

I'm getting issue in the step of Run migrations & load Fixtures':
ci error:
ci error

Ci error:
ci error

Error:  Migration DoctrineMigrations\Version20220222101244 failed during Execution. Error: "An exception occurred while executing a query: SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'user' already exists"

In ExceptionConverter.php line 47:
                                                                               
  An exception occurred while executing a query: SQLSTATE[42S01]: Base table   
  or view already exists: 1050 Table 'user' already exists  

I tried to remove schema update, this also lead into another error.
I also removed dropping database, then another error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有你 2025-01-21 04:47:06

您创建模式两次:

首先执行doctrine:schema:update,创建所有表,就像在映射中定义的那样。

然后你想要执行doctrine:migrations:migrate。我假设您也有 CREATE TABLE 定义。这就是它抱怨的原因。

如果您删除以下行

php bin/console doctrine:schema:update --env=test --force || echo "No migrations found or schema update failed"

并在迁移中进行所有设置,它应该可以工作。

You create your schema twice:

First you do a doctrine:schema:update, that creates all tables like it is defined in your mapping.

Then you want to do the doctrine:migrations:migrate. I assume, that you have the CREATE TABLE definitions there, too. Thats why it complains.

If you remove this following line

php bin/console doctrine:schema:update --env=test --force || echo "No migrations found or schema update failed"

and have all setup in your migrations, it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文