Skip to content

Commit ff7ff9c

Browse files
author
ponty
committed
test: travis -> gh actions
1 parent 3d4b2bb commit ff7ff9c

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.github/workflows/main.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
2+
3+
name: Python package
4+
5+
on:
6+
schedule:
7+
# * is a special character in YAML so you have to quote this string
8+
- cron: '30 5 1 * *'
9+
push:
10+
pull_request:
11+
12+
jobs:
13+
build:
14+
runs-on: ${{ matrix.os }}
15+
strategy:
16+
matrix:
17+
os: [ubuntu-latest]
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Install dependencies
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install -y libvncserver-dev cmake qt5-qmake qt5-default
25+
- name: Test build
26+
run: |
27+
mkdir -p build1 && cd build1 && cmake .. && make && cd ..
28+
mkdir -p build2 && cd build2 && qmake ../framebuffer-vncserver.pro && make && cd ..

.travis.yml .travis.yml.bak

File renamed without changes.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
VNC server for Linux framebuffer devices.
44

5-
[![Build Status](https://travis-ci.org/ponty/framebuffer-vncserver.svg?branch=master)](https://travis-ci.org/ponty/framebuffer-vncserver)
5+
![workflow](https://github.com/ponty/framebuffer-vncserver/actions/workflows/main.yml/badge.svg)
66

77
The goal is to access remote embedded Linux systems without X.
88
Implemented features: remote display, touchscreen, keyboard, rotation

0 commit comments

Comments
 (0)