Install Ninja #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Android | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Ninja | |
run: sudo apt-get install ninja-build | |
- uses: vicr123/libcontemporary/prepare-vars@actions | |
id: vars | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: 6.6.0 | |
cache: true | |
target: android | |
- name: Configure and install libcontemporary | |
uses: theCheeseboard/libcontemporary/install-libcontemporary@actions | |
with: | |
qcoroVersion: ${{ steps.vars.outputs.qcoroVersion }} | |
- uses: actions/checkout@v4 | |
- uses: vicr123/libcontemporary/build-project@actions | |
name: "Build contemporary-theme" | |
with: | |
project: "vicr123/contemporary-theme" | |
commitish: "blueprint" | |
- uses: actions/checkout@v1 | |
with: | |
submodules: 'recursive' | |
- uses: vicr123/libcontemporary/build-project@actions | |
name: "Build project" | |
with: | |
project: "." |