Skip to content

Commit

Permalink
Move current implementation to legacy/
Browse files Browse the repository at this point in the history
The idea is to make space for the new on-going implementation while
keeping the other intact and avoiding having to deal with multiple
branches.

Signed-off-by: Juan Cruz Viotti <[email protected]>
  • Loading branch information
jviotti committed Aug 23, 2024
1 parent e85f341 commit 5332f49
Show file tree
Hide file tree
Showing 529 changed files with 21 additions and 631 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/ci.yml → .github/workflows/legacy-ci.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
name: alterschema
name: legacy-alterschema
on:
push:
branches:
- master
- main
paths:
- legacy/**
pull_request:
paths:
- legacy/**

concurrency:
group: ${{ github.ref }}
group: legacy-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
legacy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: make
- run: make -C legacy

website:
legacy-website:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: sudo apt update
- run: sudo apt-get install --yes sassc
- run: make www
- run: make -C legacy www
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: website
name: legacy-website
on:
push:
branches: [ "master" ]
branches: [ "main" ]
paths:
- legacy/**
workflow_dispatch:

permissions:
Expand All @@ -10,11 +12,11 @@ permissions:
id-token: write

concurrency:
group: website-deploy-${{ github.ref }}
group: website-legacy-deploy-${{ github.ref }}
cancel-in-progress: true

jobs:
deploy:
legacy-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -24,13 +26,13 @@ jobs:
uses: actions/checkout@v3
- run: sudo apt update
- run: sudo apt-get install --yes sassc
- run: make www
- run: make -C legacy www
- name: Setup Pages
uses: actions/configure-pages@v1
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./dist
path: ./legacy/dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
115 changes: 2 additions & 113 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,114 +1,3 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
/node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Jekyll
_site
.sass-cache
.jekyll-cache
.jekyll-metadata

# Other
.tmp
node_modules
.DS_Store
dist
/legacy/dist
2 changes: 0 additions & 2 deletions DEPENDENCIES

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 5332f49

Please sign in to comment.