-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitpod.yml
More file actions
18 lines (17 loc) · 764 Bytes
/
.gitpod.yml
File metadata and controls
18 lines (17 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: ghcr.io/conda/conda-ci:main-linux-python3.9
tasks:
- name: initialize
init: |
mkdir -p .vscode
echo '{"python.pythonPath": "/opt/conda/bin/python"}' > .vscode/settings.json
git tag "$(git tag --sort=committerdate | tail -1).dev"
eval "$(sudo /opt/conda/bin/python -m conda init --dev bash)"
sudo su root -c "/opt/conda/bin/conda install -yq conda-build"
command: |
eval "$(sudo /opt/conda/bin/python -m conda init --dev bash)"
- name: ImportGPG
command: >
[[ ! -z $GNUPG_KEY ]] &&
gpg --verbose --batch --import <(echo $GNUPG_KEY|base64 -d) &&
echo 'pinentry-mode loopback' >> ~/.gnupg/gpg.conf &&
git config commit.gpgsign true