From b3cd79118a1930c3cdd3bd02ee752e8181970637 Mon Sep 17 00:00:00 2001 From: Andrew Danger Lyon Date: Thu, 28 Mar 2024 00:34:08 -0700 Subject: [PATCH] rm old dotfiles --- .gitattributes | 5 ----- .gitlab-ci.yml | 43 ------------------------------------------- 2 files changed, 48 deletions(-) delete mode 100644 .gitattributes delete mode 100644 .gitlab-ci.yml diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 1fecb68..0000000 --- a/.gitattributes +++ /dev/null @@ -1,5 +0,0 @@ -############################################################################### -# Set default behavior to automatically normalize line endings. -############################################################################### -* text=auto - diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 58490a6..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,43 +0,0 @@ -image: ruby:latest - -variables: - JEKYLL_ENV: production - LC_ALL: C.UTF-8 - -cache: - key: - files: - - Gemfile - - package.json - paths: - - vendor - - node_modules - -before_script: - - apt update - - apt install -y npm - - gem install bundler - - bundle config set path 'vendor/bundle/' - - bundle install - - npm install - -test: - stage: test - script: - - bundle exec jekyll build -d test - artifacts: - paths: - - test - except: - - master - -pages: - stage: deploy - script: - - make deploy - artifacts: - paths: - - public - only: - - master -