Skip to content

Commit c617e32

Browse files
authored
GitHub actions build (#39)
* Deploy artifact deb package
1 parent 1054e19 commit c617e32

File tree

6 files changed

+106
-6
lines changed

6 files changed

+106
-6
lines changed

.github/workflows/release.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Release x86_64 deb artifact on release published
2+
on:
3+
release:
4+
types:
5+
- published
6+
jobs:
7+
Build:
8+
runs-on: ubuntu-22.04
9+
# strategy:
10+
# matrix:
11+
# cskk_ver: [0.8.1]
12+
steps:
13+
- name: checkout
14+
uses: actions/checkout@v3
15+
with:
16+
submodules: recursive
17+
- name: check fcitx5-cskk version
18+
id: version
19+
run: |
20+
echo ::set-output name=version::`bin/version.sh`
21+
- name: check cskk version
22+
id: cskk_version
23+
run: |
24+
echo ::set-output name=cskk_version::`bin/cskk_version.sh`
25+
- name: Download & install libcskk
26+
run: |
27+
wget https://github.com/naokiri/cskk/releases/download/v${{ steps.versions.outputs.cskk_version }}/libcskk_${{ steps.versions.outputs.cskk_version }}_amd64.deb
28+
sudo apt-get install ./libcskk_${{ steps.versions.outputs.cskk_version }}_amd64.deb
29+
- name: Install required libs and dependencies
30+
run: |
31+
sudo apt-get install extra-cmake-modules libfcitx5core-dev qtbase5-dev libfcitx5-qt-dev gettext
32+
- name: Build
33+
uses: ashutoshvarma/action-cmake-build@master
34+
with:
35+
build-dir: ${{ runner.workspace }}/build
36+
cc: gcc
37+
cxx: c++
38+
build-type: Release
39+
run-test: false
40+
build-options: --verbose
41+
- name: Pack deb
42+
run: |
43+
cd ${{ runner.workspace }}/build
44+
cpack -G DEB
45+
- name: Attatch artifact to Release
46+
uses: softprops/action-gh-release@v1
47+
with:
48+
files: |
49+
${{ runner.workspace }}/_packages/fcitx5-cskk_${{ steps.versions.outputs.version }}_amd64.deb

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
*.out
3232
*.app
3333

34-
# Common cmake build dirs
34+
# cmake build dirs
3535
cmake-build-*/
36-
build/
36+
build/
37+
_packages/

CMakeLists.txt

+9-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH})
99
include(FeatureSummary)
1010
include(GNUInstallDirs)
1111
include(ECMUninstallTarget)
12+
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
13+
1214

1315
find_package(PkgConfig REQUIRED)
1416
find_package(Fcitx5Core 5.0.6 REQUIRED)
1517

16-
pkg_check_modules(LIBCSKK REQUIRED IMPORTED_TARGET "cskk>=0.7.0")
18+
pkg_check_modules(LIBCSKK REQUIRED IMPORTED_TARGET "cskk>=0.8.1")
1719

1820
option(ENABLE_QT "Enable Qt for GUI configuration" On)
1921

@@ -52,9 +54,10 @@ if (GIT_FOUND AND EXISTS "${PROJECT_SOURCE_DIR}/.git")
5254
endif ()
5355
endif ()
5456

55-
if (NOT EXISTS "${PROJECT_SOURCE_DIR}/third_party/googletest/CMakeLists.txt")
56-
message(FATAL_ERROR "The submodules were not downloaded! GOOGLETEST was turned off or failed. Please update submodules (git submodules update --init --recurseive) and try again.")
57-
endif ()
57+
# Currently test doesn't exist, so turning off.
58+
#if (NOT EXISTS "${PROJECT_SOURCE_DIR}/third_party/googletest/CMakeLists.txt")
59+
# message(FATAL_ERROR "The submodules were not downloaded! GOOGLETEST was turned off or failed. Please update submodules (git submodules update --init --recurseive) and try again.")
60+
#endif ()
5861

5962

6063
# Not sure what this does. Need translation?
@@ -75,3 +78,5 @@ fcitx5_translate_desktop_file(
7578
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/org.fcitx.Fcitx5.Addon.Cskk.metainfo.xml" DESTINATION ${CMAKE_INSTALL_DATADIR}/metainfo)
7679

7780
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
81+
82+
include(DebPack)

bin/cskk_version.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
# Run from repository root and output cskk version from CMakeLists.txt
3+
# Helper for release automation
4+
cat CMakeLists.txt | sed -n -e "s/pkg_check_modules(LIBCSKK REQUIRED IMPORTED_TARGET \"cskk>=\(.*\)\")/\1/p"

bin/version.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
# Run from repository root and output version from CMakeLists.txt
3+
# Helper for release automation
4+
cat CMakeLists.txt | sed -n -e "s/project(fcitx5-cskk VERSION \(.*\))/\1/p"

cmake/DebPack.cmake

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Generate deb package by 'cpack -G DEB'
2+
3+
set(CPACK_PACKAGE_NAME ${PROJECT_NAME}
4+
CACHE STRING "The resulting package name"
5+
)
6+
7+
8+
set(CPACK_VERBATIM_VARIABLES YES)
9+
10+
set(CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME})
11+
SET(CPACK_OUTPUT_FILE_PREFIX "${CMAKE_SOURCE_DIR}/_packages")
12+
13+
set(CPACK_PACKAGING_INSTALL_PREFIX "/usr/local/")#/${CMAKE_PROJECT_VERSION}")
14+
15+
set(CPACK_PACKAGE_VERSION_MAJOR ${PROJECT_VERSION_MAJOR})
16+
set(CPACK_PACKAGE_VERSION_MINOR ${PROJECT_VERSION_MINOR})
17+
set(CPACK_PACKAGE_VERSION_PATCH ${PROJECT_VERSION_PATCH})
18+
19+
set(CPACK_PACKAGE_CONTACT "[email protected]")
20+
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Naoaki Iwakiri")
21+
22+
set(CPACK_DEBIAN_PACKAGE_DEPENDS "cskk (>= 0.8.0)")
23+
24+
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
25+
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_SOURCE_DIR}/README.md")
26+
27+
# package name for deb. If set, then instead of some-application-0.9.2-Linux.deb
28+
# you'll get some-application_0.9.2_amd64.deb (note the underscores too)
29+
set(CPACK_DEBIAN_FILE_NAME DEB-DEFAULT)
30+
# that is if you want every group to have its own package,
31+
# although the same will happen if this is not set (so it defaults to ONE_PER_GROUP)
32+
# and CPACK_DEB_COMPONENT_INSTALL is set to YES
33+
set(CPACK_COMPONENTS_GROUPING ALL_COMPONENTS_IN_ONE)#ONE_PER_GROUP)
34+
# without this you won't be able to pack only specified component
35+
set(CPACK_DEB_COMPONENT_INSTALL YES)
36+
37+
include(CPack)

0 commit comments

Comments
 (0)