Modernize a bit

Drop bootstrap
Remove fabfile in favor of bin/deploy
This commit is contained in:
Nikolai R Kristiansen
2022-02-22 00:26:48 +01:00
parent e204229519
commit 4e6924d055
14 changed files with 629 additions and 1296 deletions

28
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,28 @@
variables:
PIP_CACHE_DIR: "${CI_PROJECT_DIR}/.cache/pip"
default:
image: node:16-slim
lint:
stage: test
script:
- bin/lint
deploy:
stage: deploy
before_script:
# Install ssh if not already
- 'command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
# Make SSH key available
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
# Add known host keys
- echo "$SSH_KNOWN_HOSTS" >> ~/.ssh/known_hosts
- chmod 644 ~/.ssh/known_hosts
script:
- ssh gitdeploy@dreamcast.neuf.no "$(< bin/deploy)"
only:
- main