1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 00:38:06 +00:00

Adds system package install

This commit is contained in:
Jason Hall 2025-06-06 06:01:48 -04:00
parent 4106a10dbc
commit 91e375693a

View file

@ -23,6 +23,11 @@ jobs:
- name: Git Checkout
uses: actions/checkout@v3
- name: Install system pachages
run: |
sudo apt-get update
sudo apt-get install -y libcairo2-dev pkg-config python3-dev
- name: Install Python
uses: actions/setup-python@v5
with:
@ -48,7 +53,6 @@ jobs:
- name: Prepare
run: |
sudo apt-get install libcairo2-dev -y
mkdir -p "$HOME/hyperglass"
echo "HYPERGLASS_APP_PATH=$HOME/hyperglass" >> $GITHUB_ENV
echo "HYPERGLASS_HOST=127.0.0.1" >> $GITHUB_ENV