프로젝트의 서브 모듈로 내 계정의 private repo를 submodule로 사용하려한다.
하지만 CircleCI 빌드 시
ERROR: Repository not found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
이런 에러가 발생한다.
CircleCI ->Project Setting -> SSH keys 에서
User Key 를 생성하고 fingerprints 를 복사한다.
그 다음 프로젝트의 CircleCI config.yml에
steps:
- add_ssh_keys:
fingerprints:
- "<내 user key의 fingerprints>"
를 추가하면 CircleCI와 연동된 Github 계정 소유의 개인 리포를 clone할 수 있게 된다.
참고 :
+ https://circleci.com/docs/2.0/configuration-reference/#add_ssh_keys
'기술관련 기록' 카테고리의 다른 글
NVIDIA cuda X server error (0) | 2020.07.30 |
---|---|
error: conversion from ‘const cv::Mat’ to non-scalar type IplImage {aka _IplImage}’ requested (0) | 2020.06.25 |
ubuntu16.04 g++6 설치 (0) | 2020.06.12 |
ubuntu 16.04 chrome이 열리지 않을 때 (0) | 2020.06.04 |
OpenBLAS : /usr/bin/ld: cannot find -lgfortran (0) | 2020.02.19 |