Skip to content

Adding missing include for CMake FetchContent_Declare command #132

Adding missing include for CMake FetchContent_Declare command

Adding missing include for CMake FetchContent_Declare command #132

Workflow file for this run

name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
build-and-test:
strategy:
matrix:
ARCH: [x86_64, i386, aarch64, armhf]
UPDATE: ["1"]
fail-fast: false
name: ${{ matrix.ARCH }}
runs-on: ubuntu-latest
env:
ARCH: ${{ matrix.ARCH }}
BUILD_TYPE: ${{ matrix.BUILD_TYPE }}
DEBIAN_FRONTEND: interactive
steps:
# check out once git command is available
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up QEMU integration for Docker
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: Build and test AppImage
run: bash ci/build-in-docker.sh
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: AppImage ${{ matrix.ARCH }}
path: linuxdeploy-plugin-qt-${{ matrix.ARCH }}.AppImage*
upload:
name: Create release and upload artifacts
needs:
- build-and-test
runs-on: ubuntu-20.04
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
- name: Inspect directory after downloading artifacts
run: ls -alFR
- name: Create release and upload artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage
chmod +x pyuploadtool-x86_64.AppImage
./pyuploadtool-x86_64.AppImage **/linuxdeploy-plugin-qt*.AppImage*