Skip to content

Use Ubuntu 20.04

Use Ubuntu 20.04 #34

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-20.04
env:
VARNAM_UPSTREAM: https://varnamproject.com
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Build GoVarnam
run: |
cd ../
git clone https://github.com/varnamproject/govarnam.git govarnam
cd govarnam
make
sudo make install
- name: Build GoVarnam-IBus Engine
run: |
sudo apt install libgtk-3-dev libcairo2-dev libglib2.0-dev
make ubuntu-14
make release
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: varnam-ibus-engine
path: "*.zip"