Install missing nss in container #27
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 flatpak manifest | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
# https://github.com/flatpak/flatpak-github-actions?tab=readme-ov-file#docker-image | |
image: bilelmoussaoui/flatpak-github-actions:freedesktop-23.08 | |
options: --privileged | |
permissions: | |
contents: read | |
strategy: | |
matrix: | |
arch: | |
- x86_64 | |
- aarch64 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
if: ${{ matrix.arch == 'aarch64' }} | |
run: dnf -y install docker | |
- name: Setup QEMU | |
if: ${{ matrix.arch == 'aarch64' }} | |
id: qemu | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: arm64 | |
- name: Install missing depends | |
run: dnf -y install jq bsdtar nss | |
- name: Get QQ version in manifest | |
id: qq-version | |
shell: bash | |
run: | | |
_arch=$(flatpak --default-arch) | |
_manifest=$(flatpak-builder --show-manifest com.qq.QQ.yaml) | |
_extra_datas=$(echo "$_manifest" | jq -r ".modules[].sources | map(select(.type == \"extra-data\")) | select(length > 0)") | |
_qq=$(echo "$_extra_datas" | jq -r "map(select(.\"only-arches\" | contains([\"$_arch\"])))") | |
_url=$(echo "$_qq" | jq -r ".[0].url") | |
_version=$(echo "${_url##*/}" | cut -d _ -f 2,3) | |
echo "version=$_version" >> $GITHUB_OUTPUT | |
- name: Cache QQ-${{ steps.qq-version.outputs.version }} deb | |
uses: actions/cache@v4 | |
with: | |
path: qq-${{ steps.qq-version.outputs.version }}.deb | |
key: ${{ matrix.arch }}-${{ steps.qq-version.outputs.version }} | |
- name: Generate preloads | |
run: bash extract-preloads.sh | |
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6 | |
with: | |
bundle: com.qq.QQ.flatpak | |
manifest-path: com.qq.QQ.yaml | |
arch: ${{ matrix.arch }} | |
branch: liteloader | |