diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7e7c40..b5be490 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,28 @@ -image: node:current-alpine3.15 +default: + image: node:current-alpine3.15 -cache: - key: - files: - - yarn.lock - paths: - - .yarn-cache/ + cache: + key: + files: + - yarn.lock + paths: + - .yarn-cache/ + + 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 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 stages: - build @@ -15,57 +32,39 @@ build: stage: build script: - # Handle the Yarn - - echo 'yarn-offline-mirror ".yarn-cache/"' >> .yarnrc - - echo 'yarn-offline-mirror-pruning true' >> .yarnrc - - yarn install --frozen-lockfile --no-progress + # Regenerate the static files + - make regenerate-dots + - make regenerate-zips - # Install the dependencies for alpine - - apk update && apk add make graphviz zip openssh rsync - - # Regenerate the static files - - make regenerate-dots - - make regenerate-zips - - # Run a mock build to enable faster rebuild - - URL=http://localhost BASE_URL=/ yarn run build + # Run a mock build to enable faster rebuild + - URL=http://localhost BASE_URL=/ yarn run build artifacts: paths: - - "build/" + - "build/" deploy 1/2: stage: deploy script: - - 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 - - make deploy-poincare + - make deploy-poincare artifacts: paths: - - "build/" + - "build/" only: - - main + - main deploy 2/2: stage: deploy script: - - 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 - - make deploy-aisa + - make deploy-aisa artifacts: paths: - - "build/" + - "build/" only: - - main + - main