Github - Travis 연동 에러

cad·2021년 12월 7일
6

Study

목록 보기
1/5
post-thumbnail
  • Travis CI 사용해보려고 하는데 바로 에러가 뜬다.
    We are unable to start your build at this time. You exceeded the number of users allowed for your plan. Please review your plan details and follow the steps to resolution.

  • 지금은 빌드를 시작할 수 없습니다. Plan에 허용된 사용자 수를 초과했습니다...

  • 플랜을 바꾸라고 하니 무슨 말인가 싶어 찾아보니 이젠 무료에서 요금제를 적용시킨 것 같다.

  • 이제는 10,000 크레딧 제공에 차감식으로 지원하는 시스템이다.

  • 비자 카드를 등록하고 무료 플랜으로 가입했다.

  • 그랬더니 잘 된다.


.travis.yml 코드

language: java
jdk:
  - openjdk8
branches:
  only:
    - main

# Travis CI Server's Home
cache:
  - directories:
      - '$HOME/.m2/repository'
      - '$HOME/.gradle'

script: "./gradlew clean build"

# CI 실행 완료 시 메일로 알람
notifications:
  email:
    recipients:
      - cadqe13@gmail.com
profile
Dare mighty things!

0개의 댓글