Skip to content

Commit ebbd3b1

Browse files
committed
Merge branch 'devel'
2 parents 5ab2868 + 426fb72 commit ebbd3b1

File tree

17 files changed

+1273
-171
lines changed

17 files changed

+1273
-171
lines changed

.github/workflows/ci.yml

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: switchtec-user CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
linux:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: configure
11+
run: ./configure
12+
- name: make
13+
run: make -k W=1
14+
linux-clang:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: configure
19+
run: ./configure
20+
- name: make
21+
run: make -k W=1
22+
env:
23+
CC: clang
24+
linux-32bit:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- name: install packages
28+
run: sudo apt-get install gcc-multilib
29+
- uses: actions/checkout@v2
30+
- name: configure
31+
run: ./configure
32+
- name: make
33+
run: make -k W=1
34+
env:
35+
CFLAGS: -m32
36+
LDFLAGS: -m32
37+
windows:
38+
runs-on: ubuntu-latest
39+
steps:
40+
- name: install packages
41+
run: sudo apt-get install gcc-mingw-w64-x86-64 mingw-w64-x86-64-dev
42+
- uses: actions/checkout@v2
43+
- name: configure
44+
run: ./configure --host x86_64-w64-mingw32
45+
- name: make
46+
run: make -k W=1
47+
env:
48+
CC: x86_64-w64-mingw32-gcc
49+
sparse:
50+
runs-on: ubuntu-latest
51+
steps:
52+
- name: install packages
53+
run: sudo apt-get install sparse
54+
- uses: actions/checkout@v2
55+
- name: configure
56+
run: ./configure
57+
- name: make
58+
run: make -k W=1 CFLAGS=-Wsparse-error CFLAGS+=-Wno-vla CFLAGS+=-Wno-old-initializer
59+
env:
60+
CC: cgcc
61+
CFLAGS:

.travis.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)