Switch from 2.0 to 1.0

I’m having no luck building a symfony app with mysql integration on 2.0 and would like to try 1.0. I changed my config.yml to the 1.0 syntax but my builds now fail with:

no jobs found. Is this a 2.0 config file?

Here is the content of my config.yml for reference:

machine:
  php:
    version: 7.1.3
dependencies:
  override:
    - cd symfony && composer install --prefer-source --no-interaction
    - cp symfony/app/config/parameters_test.circle.yml symfony/app/config/parameters_test.yml
    - symfony/bin/console doctrine:database:drop --env=test --no-interaction --force
    - symfony/bin/console doctrine:database:create --env=test --no-interaction
    - symfony/bin/console doctrine:migrations:migrate --env=test --no-interaction
1 Like

Any news about this?