circleci # Невозможно проанализировать значения сопоставления YAML # здесь не разрешены - PullRequest
0 голосов
/ 02 марта 2019

Мне нужно создать мое приложение Android, в CriclCi .Я только что нашел предоставленный образец , как показано ниже:

version: 2
jobs:
  build:
    working_directory: ~/code
    docker:
      - image: circleci/android:api-25-alpha
    environment:
      JVM_OPTS: -Xmx3200m
    steps:
      - checkout
      - restore_cache:
          key: jars-{{ checksum "build.gradle" }}-{{ checksum  "app/build.gradle" }}
#      - run:
#         name: Chmod permissions #if permission for Gradlew Dependencies fail, use this.
#         command: sudo chmod +x ./gradlew
      - run:
          name: Download Dependencies
          command: ./gradlew androidDependencies
      - save_cache:
          paths:
            - ~/.gradle
          key: jars-{{ checksum "build.gradle" }}-{{ checksum  "app/build.gradle" }}
      - run:
          name: Run Tests
          command: ./gradlew lint test
      - store_artifacts: # for display in Artifacts: https://circleci.com/docs/2.0/artifacts/ 
          path: app/build/reports
          destination: reports
      - store_test_results: # for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
          path: app/build/test-results
      # See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples

Но, когда я его использую, сборка CircleCi дает сбой и выдает:

#!/bin/bash -eo pipefail
./gradlew androidDependencies
/bin/bash: ./gradlew: Permission denied
Exited with code 126

В результате я добавил приведенный ниже код и повторил попытку:

  run:
         name: Chmod permissions
         command: sudo chmod +x ./gradlew

Этот код рекомендуется CCI, но на этот раз он жалуется:

#!/bin/sh -eo pipefail
# Unable to parse YAML
# mapping values are not allowed here
#  in 'string', line 13, column 16:
#               - run:
#                    ^
# 
# -------
# Warning: This configuration was auto-generated to show you the message above.
# Don't rerun this job. Rerunning will have no effect.
false

Как я могу это исправить?

1 Ответ

0 голосов
/ 02 марта 2019

я понял, отступ в файле yml всегда должен оставаться постоянным.Таким образом, ключевые слова run всегда должны быть в одном столбце.

...