File: rebuild

package info (click to toggle)
vim-youcompleteme 0%2B20230109%2Bgit7620d87%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,404 kB
  • sloc: python: 10,569; sh: 203; cpp: 121; makefile: 24; f90: 5; xml: 1
file content (16 lines) | stat: -rwxr-xr-x 312 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env bash

set -e

if [ "$1" = "--continue" ]; then
  OPTS=""
else
  OPTS="--no-cache"
fi

ARCH=$(uname -m)

docker build ${OPTS} -t youcompleteme/ycm-vim-${ARCH}-py3:manual \
                     --build-arg YCM_PYTHON=py3 \
                     --build-arg ARCH=${ARCH} \
                     image/