---
title: "CI/CD 파이프라인과 연동하는 방법"
description: "모바일 앱 보호를 자동화하기 위해 DoveRunner Mobile App Security CLI 도구를 CI/CD 파이프라인과 연동하는 방법을 알아보세요."
---
> For the complete documentation index, see [llms.txt](/llms.txt).

DoveRunner Mobile App Security는 모든 CI/CD 파이프라인과 연동할 수 있는 CLI 도구(명령줄 인터페이스 도구)를 제공합니다.

이 CLI 도구는 개발자가 웹 콘솔에 로그인하지 않고도 APK 또는 App Bundle(AAB)을 DoveRunner Mobile App Security 서버에 업로드하고 실링된 APK 또는 AAB 파일을 자동으로 다운로드할 수 있도록 도와줍니다.

DoveRunner Mobile App Security 콘솔에서 CLI 도구를 다운로드할 수 있습니다.

참고: 이 CLI 도구는 Android 보안 서비스만 지원합니다. iOS DoveRunner Mobile App Security 서비스는 SDK 기반이므로 SDK를 다운로드하여 프로젝트 및 CI/CD 파이프라인과 직접 통합할 수 있습니다.

## CLI 도구 다운로드

CLI 도구를 다운로드하려면(콘솔):
1. [https://console.doverunner.com](https://console.doverunner.com)에서 도브러너 콘솔을 엽니다
2. DoveRunner Mobile App Security 계정 자격 증명으로 로그인합니다
3. Android App Security 콘솔로 이동합니다.
4. 조직 > 3rd Party 연동 페이지로 이동합니다.
5. **CLI 도구 다운로드**를 클릭하면, CLI 키가 계정에 대한 도구 인증에 사용됩니다
6. 다운로드된 CLI 도구에는 기본 설정 및 Jenkins와의 통합을 위한 가이드가 포함되어 있습니다
   
![cli download](/img/mobile-app-security/console-aos-cli-download.png)

## DoveRunner Mobile App Security CLI 도구 설치

압축 파일을 원하는 디렉토리에 압축 해제하고 권한을 부여합니다.

Linux & Mac:

```bash
# mkdir /opt/appsealing 
# cd /opt/appsealing
# unzip SealingTool.zip 
# rm -rf SealingTool.zip 
# cd ..
# chmod -R 750 appsealing/
# chown -R 6jenkins:6jenkins appsealing/
```

Windows batch:

```bash
@echo off
mkdir C:\opt\appsealing
cd C:\opt\appsealing
tar -xf SealingTool.zip
del SealingTool.zip
cd ..
icacls appsealing /grant:r jenkins:F /inheritance:e /T
icacls appsealing /remove:g "Users" /T
icacls appsealing /remove:g "Authenticated Users" /T
```