Compare commits
14 Commits
master
...
lash/ci-fo
Author | SHA1 | Date | |
---|---|---|---|
6c8118e7fc | |||
55a4d14940 | |||
|
86193b123e | ||
|
14eb554ab2 | ||
|
4695cfa654 | ||
|
bf179a5db7 | ||
|
b99b5bd4fa | ||
|
8f33ce40e1 | ||
|
3a63d0505f | ||
|
334c63b1e6 | ||
|
b123e050c3 | ||
|
e27d5d8b33 | ||
|
cc35c498c8 | ||
|
dea7bc8a1c |
@ -6,6 +6,7 @@ include:
|
||||
- local: 'apps/cic-notify/.gitlab-ci.yml'
|
||||
- local: 'apps/cic-meta/.gitlab-ci.yml'
|
||||
- local: 'apps/cic-cache/.gitlab-ci.yml'
|
||||
- local: 'apps/contract-migration/scripts/.gitlab-ci.yml'
|
||||
|
||||
stages:
|
||||
- build
|
||||
|
14
apps/contract-migration/scripts/.gitlab-ci.yml
Normal file
14
apps/contract-migration/scripts/.gitlab-ci.yml
Normal file
@ -0,0 +1,14 @@
|
||||
.scripts_variables:
|
||||
variables:
|
||||
APP_DIR: contract-migrations
|
||||
APP_NAME: scripts
|
||||
DOCKERFILE_PATH: $APP_DIR/$APP_NAME/docker/Dockerfile
|
||||
|
||||
.scripts_changes_target:
|
||||
rules:
|
||||
- changes:
|
||||
- $CONTEXT/$APP_DIR/$APP_NAME
|
||||
|
||||
build-mr-scripts:
|
||||
script:
|
||||
- python create_import_users.py -v -c config --gift-threshold 10000 100
|
6
apps/contract-migration/scripts/docker/Dockerfile
Normal file
6
apps/contract-migration/scripts/docker/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
||||
FROM python:3.8.5-slim-buster
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y --no-install-recommends git gcc g++ libpq-dev gawk jq telnet wget openssl iputils-ping gnupg socat bash procps make python2 cargo
|
||||
RUN pip install pip
|
||||
RUN pip install --extra-index-url https://pip.grassrootseconomics.net:8433 -r requirements.txt
|
Loading…
Reference in New Issue
Block a user