mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Merge from vscode 2c306f762bf9c3db82dc06c7afaa56ef46d72f79 * Fix breaks * Extension management fixes * Fix breaks in windows bundling * Fix/skip failing tests * Update distro * Add clear to nuget.config * Add hygiene task * Bump distro * Fix hygiene issue * Add build to hygiene exclusion * Update distro * Update hygiene * Hygiene exclusions * Update tsconfig * Bump distro for server breaks * Update build config * Update darwin path * Add done calls to notebook tests * Skip failing tests * Disable smoke tests
22 lines
955 B
Bash
Executable File
22 lines
955 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file is used to archive off a copy of any differences in the source tree into another location
|
|
# in the image. Once the codespace is up, this will be restored into its proper location (which is
|
|
# quick and happens parallel to other startup activities)
|
|
|
|
set -e
|
|
|
|
SCRIPT_PATH="$(cd "$(dirname $0)" && pwd)"
|
|
SOURCE_FOLDER="${1:-"."}"
|
|
CACHE_FOLDER="${2:-"/usr/local/etc/devcontainer-cache"}"
|
|
|
|
echo "[$(date)] Starting cache operation..."
|
|
cd "${SOURCE_FOLDER}"
|
|
echo "[$(date)] Determining diffs..."
|
|
find -L . -not -path "*/.git/*" -and -not -path "${SCRIPT_PATH}/*.manifest" -type f > "${SCRIPT_PATH}/after.manifest"
|
|
grep -Fxvf "${SCRIPT_PATH}/before.manifest" "${SCRIPT_PATH}/after.manifest" > "${SCRIPT_PATH}/cache.manifest"
|
|
echo "[$(date)] Archiving diffs..."
|
|
mkdir -p "${CACHE_FOLDER}"
|
|
tar -cf "${CACHE_FOLDER}/cache.tar" --totals --files-from "${SCRIPT_PATH}/cache.manifest"
|
|
echo "[$(date)] Done! $(du -h "${CACHE_FOLDER}/cache.tar")"
|