Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install fontconfig and freetype in CI #1

Open
wants to merge 3 commits into
base: strata
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ninja-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
uses: actions/checkout@v2
- name: Install XCB packages
run: |
apt-get update
apt-get install -y --no-install-recommends libxkbcommon-x11-dev libxcb-cursor-dev libxcb-icccm4-dev libxcb-keysyms1-dev
apt-get update || true
apt-get install -y --no-install-recommends libxkbcommon-x11-dev libxcb-cursor-dev libxcb-icccm4-dev libxcb-keysyms1-dev libfontconfig-dev
- name: Prepare build dirs
run: |
mkdir build
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
tar cf qt6.tar /opt/qt6
gzip qt6.tar
- name: Build upload
uses: actions/upload-artifact@v2.3.1
uses: actions/upload-artifact@v4
with:
name: build_${{ github.sha }}
path: /opt/qt6.tar.gz
Expand Down
Loading