2021-07-12 12:24:29 -04:00
|
|
|
const services = require('./services')
|
|
|
|
|
|
|
|
console.log('#!/bin/bash')
|
|
|
|
console.log('set -ex')
|
|
|
|
|
|
|
|
switch (process.argv.pop()) {
|
|
|
|
case 'checkout':
|
|
|
|
for (const service of services) {
|
|
|
|
console.log(`git clone ${service.repo} ${service.name}`)
|
|
|
|
console.log(`git -C ${service.name} checkout ${service.version}`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'revisions':
|
|
|
|
for (const service of services) {
|
2021-07-16 10:31:53 -04:00
|
|
|
console.log(`echo -n /var/www/sharelatex/${service.name},`)
|
2021-07-12 12:24:29 -04:00
|
|
|
console.log(`git -C ${service.name} rev-parse HEAD`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'cleanup-git':
|
|
|
|
for (const service of services) {
|
|
|
|
console.log(`rm -rf ${service.name}/.git`)
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'install':
|
|
|
|
for (const service of services) {
|
|
|
|
console.log('pushd', service.name)
|
|
|
|
switch (service.name) {
|
|
|
|
case 'web':
|
|
|
|
console.log('npm ci')
|
|
|
|
break
|
|
|
|
default:
|
2021-07-13 04:13:04 -04:00
|
|
|
// TODO(das7pad): revert back to npm ci --only=production (https://github.com/overleaf/issues/issues/4544)
|
|
|
|
console.log('npm ci')
|
2021-07-12 12:24:29 -04:00
|
|
|
}
|
|
|
|
console.log('popd')
|
|
|
|
}
|
|
|
|
break
|
|
|
|
case 'compile':
|
|
|
|
for (const service of services) {
|
|
|
|
console.log('pushd', service.name)
|
|
|
|
switch (service.name) {
|
|
|
|
case 'web':
|
|
|
|
console.log('npm run webpack:production')
|
|
|
|
// drop webpack/babel cache
|
|
|
|
console.log('rm -rf node_modules/.cache')
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
console.log(`echo ${service.name} does not require a compilation`)
|
|
|
|
}
|
|
|
|
console.log('popd')
|
|
|
|
}
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
console.error('unknown command')
|
|
|
|
console.log('exit 101')
|
|
|
|
process.exit(101)
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('set +x')
|
|
|
|
console.log(
|
|
|
|
'rm -rf /root/.cache /root/.npm $(find /tmp/ -mindepth 1 -maxdepth 1)'
|
|
|
|
)
|