Skip to content

Commit 9aace6d

Browse files
committed
Sync with from public repo - #618
1 parent fe540ac commit 9aace6d

File tree

3 files changed

+24
-36
lines changed

3 files changed

+24
-36
lines changed

.github/workflows/lint.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Lint Code Base
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- 'master'
7+
8+
jobs:
9+
build:
10+
name: Lint Code Base
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v2
15+
- name: Lint Code Base
16+
uses: docker://github/super-linter:v2.1.1
17+
env:
18+
VALIDATE_ALL_CODEBASE: false

.github/workflows/main.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
strategy:
88
matrix:
99
os: ['ubuntu-latest', 'macos-latest']
10+
# os: ['ubuntu-20.04', 'ubuntu-18.04', 'ubuntu-16.04', 'macos-latest']
11+
fail-fast: false
1012
runs-on: ${{ matrix.os }}
1113

1214
steps:
@@ -20,7 +22,7 @@ jobs:
2022
if: matrix.os == 'ubuntu-latest'
2123
- name: Install Dependencies (macOS)
2224
run: |
23-
brew install gnu-tar shellcheck jq pigz coreutils
25+
brew install gnu-tar shellcheck jq pigz coreutils gnu-sed gnu-getopt
2426
brew unlink parallel
2527
brew install moreutils gawk
2628
if: matrix.os == 'macos-latest'
@@ -31,7 +33,6 @@ jobs:
3133
export PATH="$PATH:/snap/bin"
3234
make test
3335
shell: bash
34-
- name: Build
35-
run: debuild -uc -us
36-
if: matrix.os == 'ubuntu-latest'
37-
36+
- name: Build (Linux)
37+
run: DEB_BUILD_OPTIONS=nocheck debuild -us -uc
38+
if: matrix.os == 'ubuntu-latest'

.travis.yml

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

0 commit comments

Comments
 (0)