From 718d4bd6f61f7d52c2c779dd96bf3f51b1624eab Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Fri, 18 Aug 2023 12:21:24 +0200 Subject: [PATCH] ci: switch to newer image and remove unused * switch to the latest alpine image * remove commented out code that was used before Signed-off-by: Matej Focko --- .gitlab-ci.yml | 101 +------------------------------------------------ 1 file changed, 1 insertion(+), 100 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9fd968..c57a793 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: node:current-alpine3.15 +image: node:current-alpine cache: key: @@ -22,102 +22,3 @@ pages: - public rules: - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH -# .build: -# before_script: -# # Handle the Yarn -# - echo 'yarn-offline-mirror ".yarn-cache/"' >> .yarnrc -# - echo 'yarn-offline-mirror-pruning true' >> .yarnrc -# - yarn install --frozen-lockfile --no-progress - -# # Install the dependencies for alpine -# - apk update && apk add make graphviz zip - -# .deploy: -# before_script: -# # Install the dependencies for alpine -# - apk update && apk add make openssh rsync - -# # Prepare environment for SSH -# - mkdir -p ~/.ssh -# - ln -s $SSH_CONFIG ~/.ssh/config -# - ln -s $SSH_KEY ~/.ssh/id_ed25519 -# - ln -s $SSH_KNOWN_HOSTS ~/.ssh/known_hosts -# - chmod 600 ~/.ssh/config ~/.ssh/id_ed25519 ~/.ssh/known_hosts - -# default: -# image: node:current-alpine3.15 - -# cache: -# key: -# files: -# - yarn.lock -# paths: -# - .yarn-cache/ - -# stages: -# - build -# - deploy - -# build:poincare: -# stage: build - -# extends: .build - -# script: -# # Regenerate the static files -# - make regenerate-dots -# - make regenerate-zips - -# - URL="https://blog.mfocko.xyz" BASE_URL="/" yarn run build - -# artifacts: -# paths: -# - "build/" - -# build:aisa: -# stage: build - -# extends: .build - -# script: -# # Regenerate the static files -# - make regenerate-dots -# - make regenerate-zips - -# - URL="https://fi.muni.cz" BASE_URL="~xfocko/kb/" yarn run build - -# artifacts: -# paths: -# - "build/" - -# deploy:poincare: -# stage: deploy -# needs: [build:poincare] - -# extends: .deploy - -# script: -# - rsync -avzrlpptv --delete build/ poincare:~/public_html/blog/ - -# artifacts: -# paths: -# - "build/" - -# only: -# - main - -# deploy:aisa: -# stage: deploy -# needs: [build:aisa] - -# extends: .deploy - -# script: -# - rsync -avzrlpptv --delete build/ aisa:~/public_html/kb/ - -# artifacts: -# paths: -# - "build/" - -# only: -# - main