1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 06:59:09 +00:00
conky/.github/workflows/publish-appimage.yml

139 lines
3.8 KiB
YAML
Raw Normal View History

2021-03-01 18:03:35 +00:00
name: Build AppImage
on:
push:
branches:
- main
tags:
- v*
paths-ignore:
- web/**
- doc/**
2024-02-29 13:50:03 +00:00
pull_request:
branches:
- main
paths-ignore:
- web/**
- doc/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
2021-03-01 18:03:35 +00:00
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
2022-09-12 16:18:45 +00:00
permissions:
contents: write
discussions: write
2021-03-01 18:03:35 +00:00
steps:
2021-04-18 15:46:00 +00:00
- run: sudo apt-get -qq update
2021-03-01 18:03:35 +00:00
- name: Install dependencies
run: |
sudo apt-get install -yqq --no-install-recommends \
audacious-dev \
cmake \
gawk \
lcov \
libaudclient-dev \
libcairo2-dev \
libcurl4-gnutls-dev \
2022-09-10 17:13:42 +00:00
libdbus-glib-1-dev \
2022-09-10 17:20:57 +00:00
libfuse2 \
2021-03-01 18:03:35 +00:00
libglib2.0-dev \
libical-dev \
libimlib2-dev \
libircclient-dev \
2021-03-02 18:27:59 +00:00
libiw-dev \
2021-03-01 18:03:35 +00:00
liblua5.3-dev \
libmicrohttpd-dev \
libmysqlclient-dev \
libpulse-dev \
librsvg2-dev \
libsystemd-dev \
2024-02-29 02:05:54 +00:00
libwayland-bin \
2022-12-09 17:28:40 +00:00
libwayland-dev \
2021-03-01 18:03:35 +00:00
libx11-dev \
libxdamage-dev \
libxext-dev \
libxft-dev \
libxinerama-dev \
libxml2-dev \
libxmmsclient-dev \
libxnvctrl-dev \
ncurses-dev \
2022-12-25 13:24:31 +00:00
ninja-build \
pandoc \
python3 \
2024-02-29 02:05:54 +00:00
wayland-protocols \
&&
pip3 install --upgrade pyyaml
2021-03-01 18:03:35 +00:00
- name: Checkout
uses: actions/checkout@v4
- name: Get git version
id: git-version
run: echo "GIT_VERSION=$(git describe --tags)" >> $GITHUB_ENV
2021-03-01 18:03:35 +00:00
- name: Import GPG Deploy Key
# only run on main branch
2024-02-29 14:08:50 +00:00
if: github.ref == 'refs/heads/main'
2021-03-01 18:03:35 +00:00
run: |
echo "${{ secrets.GPG_DEPLOY_KEY }}" > appimage/secret.gpg
gpg --import appimage/secret.gpg
2024-02-29 14:20:01 +00:00
- name: Set CC and CXX env vars for ubuntu-22.04
if: matrix.os == 'ubuntu-22.04'
run: |
echo "CC=clang-14" >> $GITHUB_ENV
echo "CXX=clang++-14" >> $GITHUB_ENV
- name: Set CC and CXX env vars for ubuntu-20.04
if: matrix.os == 'ubuntu-20.04'
run: |
echo "CC=clang-12" >> $GITHUB_ENV
echo "CXX=clang++-12" >> $GITHUB_ENV
2021-03-01 18:03:35 +00:00
- name: Build AppImage
2024-02-29 14:20:01 +00:00
run: ./appimage/build.sh
2022-09-12 18:15:12 +00:00
- name: Upload AppImage artifact
uses: actions/upload-artifact@v4
2021-03-01 18:03:35 +00:00
with:
name: "conky-${{ matrix.os }}-${{ env.GIT_VERSION }}.AppImage"
2022-09-12 18:20:18 +00:00
path: conky-x86_64.AppImage
if-no-files-found: error
2022-09-12 18:20:18 +00:00
- name: Upload AppImage checksum artifact
uses: actions/upload-artifact@v4
2022-09-12 18:15:12 +00:00
with:
name: "conky-${{ matrix.os }}-${{ env.GIT_VERSION }}.AppImage"
2022-09-12 18:20:18 +00:00
path: conky-x86_64.AppImage.sha256
if-no-files-found: error
- name: Upload man page artifact
uses: actions/upload-artifact@v4
with:
2022-10-15 04:34:06 +00:00
name: conky.1.gz
path: conky.1.gz
release:
runs-on: ubuntu-latest
needs: build
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
with:
# conky.1.gz is created by all jobs!
merge-multiple: true
path: ${{ github.workspace }}/artifacts
2021-03-02 15:41:45 +00:00
- name: Create Conky Release
id: create_release
2022-09-12 16:18:45 +00:00
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: false
prerelease: false
2022-09-19 15:16:35 +00:00
discussion_category_name: General
2022-09-12 16:18:45 +00:00
generate_release_notes: true
files: |
conky-*.AppImage*
2022-10-15 04:34:06 +00:00
conky.1.gz