Updated config.yml
This commit is contained in:
parent
6e69333932
commit
5158205f28
1 changed files with 15 additions and 29 deletions
|
@ -54,16 +54,10 @@ jobs:
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: ~/Cider
|
at: ~/Cider
|
||||||
- run:
|
- run:
|
||||||
name: Install system build dependencies
|
name: Install Windows System Build Dependencies
|
||||||
command: |
|
command: |
|
||||||
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
|
|
||||||
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 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
|
|
||||||
- run:
|
- run:
|
||||||
name: Fix Versioning and Add Channel
|
name: Fix Versioning and Add Channel
|
||||||
command: yarn circle:script
|
command: yarn circle:script
|
||||||
|
@ -75,7 +69,7 @@ jobs:
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: .
|
root: .
|
||||||
paths:
|
paths:
|
||||||
- dist
|
- dist/*.exe
|
||||||
|
|
||||||
build-linux:
|
build-linux:
|
||||||
executor: cider-ci
|
executor: cider-ci
|
||||||
|
@ -83,17 +77,6 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: ~/Cider
|
at: ~/Cider
|
||||||
- run:
|
|
||||||
name: Install system build dependencies
|
|
||||||
command: |
|
|
||||||
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
|
|
||||||
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 dpkg --add-architecture i386
|
|
||||||
sudo apt-get update -y
|
|
||||||
sudo apt-get install -y wine32
|
|
||||||
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
|
||||||
|
@ -105,7 +88,9 @@ jobs:
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: .
|
root: .
|
||||||
paths:
|
paths:
|
||||||
- dist
|
- dist/*.deb
|
||||||
|
- dist/*.appimage
|
||||||
|
- dist/*.snap
|
||||||
|
|
||||||
build-winget:
|
build-winget:
|
||||||
executor: cider-ci
|
executor: cider-ci
|
||||||
|
@ -114,16 +99,10 @@ jobs:
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: ~/Cider
|
at: ~/Cider
|
||||||
- run:
|
- run:
|
||||||
name: Install system build dependencies
|
name: Install Windows System Build Dependencies
|
||||||
command: |
|
command: |
|
||||||
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
|
|
||||||
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 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
|
|
||||||
- run:
|
- run:
|
||||||
name: Fix Versioning and Add Channel
|
name: Fix Versioning and Add Channel
|
||||||
command: yarn circle:script
|
command: yarn circle:script
|
||||||
|
@ -135,14 +114,21 @@ jobs:
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: .
|
root: .
|
||||||
paths:
|
paths:
|
||||||
- dist
|
- dist/*.exe
|
||||||
|
|
||||||
release:
|
release:
|
||||||
executor: cider-ci
|
executor: cider-ci
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- attach_workspace:
|
- attach_workspace:
|
||||||
at: ~/Cider
|
at: ~/Cider/dist
|
||||||
|
- run:
|
||||||
|
name: Installing GitHub Command Line Interface
|
||||||
|
command: |
|
||||||
|
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
|
||||||
|
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 install -y gh
|
||||||
- run:
|
- run:
|
||||||
name: Move Build Files
|
name: Move Build Files
|
||||||
command: |
|
command: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue