Skip to content

Translations update from Fedora Weblate #8

Translations update from Fedora Weblate

Translations update from Fedora Weblate #8

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
jobs:
version:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container: ["fedora:39", "fedora:40", "ubuntu:jammy"]
steps:
- name: Check container sha tags
run: |
docker pull "${{ matrix.container }}"
docker inspect "${{ matrix.container }}" --format=${{ '{{.RepoDigests}}{{.Created}}' }}
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
container: ["fedora:39", "fedora:40", "ubuntu:jammy"]
container:
image: ${{ matrix.container }}
steps:
- name: Install distro packages
env:
# For autogen.sh
UBUNTU_PACKAGES_AUTOGEN: >
autopoint
strace
# For make from
# https://packages.ubuntu.com/search?searchon=sourcenames&keywords=ibus-anthy
UBUNTU_PACKAGES_MAKE: >
desktop-file-utils
gettext
gir1.2-ibus-1.0
libanthy-dev
libdconf-dev
libgirepository1.0-dev
libglib2.0-dev
libgtk-3-bin
libgtk-3-dev
libtool
pkg-config
python3-all
# for make check
UBUNTU_PACKAGES_CI_KEY: >
ibus
python3-pip
FEDORA_PACKAGES_MAKE: >
anthy-unicode-devel
desktop-file-utils
dconf-devel
gettext-devel
git
gtk3-devel
gobject-introspection-devel
ibus-devel
libtool
python3-devel
python3-gobject
# for ibus-keypress
FEDORA_PACKAGES_CI_KEY: >
gnome-shell
gnome-shell-extension-no-overview
libXtst-devel
python3-pycotap
FEDORA_PACKAGES_DISTRO: >
patch
procps-ng
strace
run: |
case "${{ matrix.container }}" in
ubuntu*)
cat /etc/lsb-release
echo "apt-get update -qq -y"
apt-get update -qq -y
echo "apt-get install -q -y git"
apt-get install -q -y git
PACKAGES=$(echo "$UBUNTU_PACKAGES_AUTOGEN" | tr -d '\n')
PACKAGES=$(echo "$PACKAGES $UBUNTU_PACKAGES_MAKE" | tr -d '\n')
PACKAGES=$(echo "$PACKAGES $UBUNTU_PACKAGES_CI_KEY" | tr -d '\n')
echo "apt-get install -y $PACKAGES"
apt-get install -y $PACKAGES
dpkg -l | grep anthy
;;
fedora*)
cat /etc/fedora-release
DNF=dnf
echo "$DNF -y update"
$DNF -y update
echo "$DNF -y install git which"
$DNF -y install git which
PACKAGES=$(echo "$FEDORA_PACKAGES_MAKE" | tr -d '\n')
PACKAGES=$(echo "$PACKAGES $FEDORA_PACKAGES_CI_KEY" | tr -d '\n')
PACKAGES=$(echo "$PACKAGES $FEDORA_PACKAGES_DISTRO" | tr -d '\n')
echo "$DNF -y install $PACKAGES"
$DNF -y install $PACKAGES
;;
*)
echo "Not supported ${{ matrix.container }}"
ls /etc/*release
cat /etc/*release
exit 1
;;
esac
pwd
echo $GITHUB_WORKSPACE
ls -a
- uses: actions/checkout@v2
with:
#repository: ibus/ibus-anthy
fetch-depth: 200
- name: Fetch git tags
run: |
pwd
id
ls -al
git config --global --add safe.directory $GITHUB_WORKSPACE
git branch
git fetch --prune --unshallow --tags
echo $PATH
- name: Run autogen
# configure options from
# https://salsa.debian.org/debian/ibus/-/blob/master/debian/rules
run: >
./autogen.sh
--libexecdir=/usr/lib/ibus
--with-layout='default'
--with-python=python3
--with-hotkeys
--with-on-off-keys="'Zenkaku_Hankaku', 'Ctrl+space', 'Ctrl+J'"
--enable-installed-tests
--disable-static
- name: Run make
# UTF-8 locale is required for sed 'y/0123456789/0123456789/'
#
# Set the cutom DESTDIR because the default DESTDIR
# /home/travis/bulid/fujiwarat/$PKG/ibus/ibus-$VERSION/_inst seems to
# be too long and failed to set DESTDIR to install
# bindings/pygobject/IBus.py
run: >
env LANG=C.UTF-8
make distcheck
VERBOSE=1
DESTDIR="$HOME/build/$USER/dest"
- name: Desktop file validation
run: |
make -C setup/python3 ibus-setup-anthy.desktop
echo "desktop-file-validate ./setup/python3/ibus-setup-anthy.desktop"
desktop-file-validate ./setup/python3/ibus-setup-anthy.desktop