Updated config.yml
This commit is contained in:
parent
a486de3fdc
commit
a55dbc716e
1 changed files with 35 additions and 35 deletions
|
@ -16,41 +16,41 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run: ls -la
|
- run: ls -la
|
||||||
# - run:
|
- run:
|
||||||
# name: Set App Version
|
name: Set App Version
|
||||||
# command: echo "export APP_VERSION=$(grep '"version":.*' package.json | cut -d '"' -f 4 | head -1)" >> $BASH_ENV
|
command: echo "export APP_VERSION=$(grep '"version":.*' package.json | cut -d '"' -f 4 | head -1)" >> $BASH_ENV
|
||||||
# - run:
|
- run:
|
||||||
# name: Update Package Managers
|
name: Update Package Managers
|
||||||
# command: sudo npm update -g npm yarn
|
command: sudo npm update -g npm yarn
|
||||||
# - restore_cache:
|
- restore_cache:
|
||||||
# name: Restore Yarn Package Cache
|
name: Restore Yarn Package Cache
|
||||||
# keys:
|
keys:
|
||||||
# - yarn-packages-{{ checksum "cider.lock" }}
|
- yarn-packages-{{ checksum "cider.lock" }}
|
||||||
# - run:
|
- run:
|
||||||
# name: Install Dependencies
|
name: Install Dependencies
|
||||||
# command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
|
command: yarn install --frozen-lockfile --cache-folder ~/.cache/yarn
|
||||||
# - save_cache:
|
- save_cache:
|
||||||
# name: Save Yarn Package Cache
|
name: Save Yarn Package Cache
|
||||||
# key: yarn-packages-{{ checksum "cider.lock" }}
|
key: yarn-packages-{{ checksum "cider.lock" }}
|
||||||
# paths:
|
paths:
|
||||||
# - ~/.cache/yarn
|
- ~/.cache/yarn
|
||||||
# - run:
|
- run:
|
||||||
# name: Install system build dependencies
|
name: Install system build dependencies
|
||||||
# command: |
|
command: |
|
||||||
# sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
# curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
|
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
|
||||||
# echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
|
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
|
||||||
# sudo apt-get install -y dpkg fakeroot wine64
|
sudo apt-get install -y dpkg fakeroot wine64
|
||||||
# sudo dpkg --add-architecture i386
|
sudo dpkg --add-architecture i386
|
||||||
# sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
# sudo apt-get install -y wine32
|
sudo apt-get install -y wine32
|
||||||
# sudo apt install -y gh
|
sudo apt install -y gh
|
||||||
# - run:
|
- run:
|
||||||
# name: Fix Versioning and Add Channel
|
name: Fix Versioning and Add Channel
|
||||||
# command: yarn circle:script
|
command: yarn circle:script
|
||||||
# - run:
|
- run:
|
||||||
# name: TypeScript Compile
|
name: TypeScript Compile
|
||||||
# command: yarn build
|
command: yarn build
|
||||||
# Persist the specified paths (workspace/echo-output) into the workspace for use in downstream job.
|
# Persist the specified paths (workspace/echo-output) into the workspace for use in downstream job.
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
# Must be an absolute path, or relative path from working_directory. This is a directory on the container which is
|
# Must be an absolute path, or relative path from working_directory. This is a directory on the container which is
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue