Browse Source

package/ci: curses, lots of curses.

pull/12/head
Vladimír Vondruš 5 years ago
parent
commit
5c2cad1461
  1. 9
      package/ci/circleci.yml

9
package/ci/circleci.yml

@ -38,6 +38,15 @@ commands:
type: string
default: ""
steps:
- run:
# ninja needs python@3.9 as a dependency FOR SOME FUCKING REASON and
# when THE DAMN THING installs it, it proceeds with reinstalling
# python@2. FROM SOURCES! FUCK! and then it fails to link it because
# NO SHIT, python@3.9 is already installed! HOW THE FUCK ARE PEOPLE
# ABLE TO DEAL WITH SUCH CURSED SHIT ALL THE TIME?! FUCK OFF
name: Remove Python 2 curse
command: |
HOMEBREW_NO_AUTO_UPDATE=1 brew uninstall python@2
- run:
name: Install base packages
# As usual, homebrew takes five minutes to update and then explodes in

Loading…
Cancel
Save