Skip to content
This repository was archived by the owner on Oct 30, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,25 @@ jobs:
environment:
DEBIAN_FRONTEND: noninteractive
docker:
- image: phanect/debian-kde
- image: debian:buster
environment:
DEBIAN_FRONTEND: noninteractive
steps:
- run:
command: |
apt-get update -qq
apt-get install --yes git sudo
- checkout
- run:
command: |
./setup.sh

build-debian-wsl:
working_directory: ~/ossetup
environment:
DEBIAN_FRONTEND: noninteractive
docker:
- image: debian:stretch
environment:
DEBIAN_FRONTEND: noninteractive
steps:
Expand All @@ -54,6 +72,5 @@ workflows:
build_all:
jobs:
- build-neon
# Debian is now disabled since I don't use Debian for now.
# Keep commented out for the time I will use Debian again
# - build-debian
- build-debian
- build-debian-wsl
3 changes: 0 additions & 3 deletions packages.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,6 @@
"ubuntu": {
"all": [
"fonts-takao-pgothic"
],
"werewolf": [
"kde-telepathy-legacy-presence-applet"
]
},
"debian": {
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sudo apt-get autoremove --yes
sudo apt-get dist-upgrade --yes

# Add Node.js Repo
curl --sSL https://deb.nodesource.com/setup_12.x | sudo --preserve-env bash -
curl -sSL https://deb.nodesource.com/setup_12.x | sudo --preserve-env bash -

# Add yarn Repo
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
Expand Down