File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change 6
6
build :
7
7
strategy :
8
8
matrix :
9
- # macos-latest references are kept here for historical purposes. removed macos-latest from the
10
- # matrix as it is not a typical case for users and causes a lot of friction with other linux-based
11
- # installs. Recommend developing on codespaces or using an ubuntu container.
12
9
os : ['ubuntu-22.04', 'ubuntu-20.04']
13
10
fail-fast : false
14
11
runs-on : ${{ matrix.os }}
20
17
wget "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz"
21
18
tar --xz -xvf "shellcheck-stable.linux.x86_64.tar.xz"
22
19
sudo cp shellcheck-stable/shellcheck /usr/bin/shellcheck
23
- if : matrix.os != 'macos-latest'
24
- - name : Install Dependencies (macOS)
25
- run : |
26
- brew install gnu-tar shellcheck jq pigz coreutils gnu-sed gnu-getopt wget
27
- brew install moreutils gawk
28
- if : matrix.os == 'macos-latest'
29
20
- name : Get Sources
30
21
uses : actions/checkout@v3
31
22
- name : Test
35
26
shell : bash
36
27
- name : Build (Linux)
37
28
run : DEB_BUILD_OPTIONS=nocheck debuild -us -uc
38
- if : matrix.os != 'macos-latest'
Original file line number Diff line number Diff line change 5
5
# Enable verbose logging of ssh commands
6
6
export GHE_VERBOSE_SSH=true
7
7
8
- if ! find test -name " test-*.sh" -print0 | xargs -0 -P 4 - n 1 /bin/bash; then
8
+ if ! find test -name " test-*.sh" -print0 | xargs -0 -n 1 /bin/bash; then
9
9
exit 1
10
10
fi
11
11
You can’t perform that action at this time.
0 commit comments