This commit is contained in:
Ryan Trauntvein 2020-06-08 15:28:01 -07:00 коммит произвёл GitHub
Родитель 25c68bb137
Коммит 1079f30706
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

6
.github/workflows/main.yml поставляемый
Просмотреть файл

@ -21,19 +21,19 @@ jobs:
if: matrix.os != 'macos-latest'
- name: Install Dependencies (macOS)
run: |
brew install gnu-tar shellcheck jq pigz coreutils
brew install gnu-tar shellcheck jq pigz coreutils gnu-sed gnu-getopt
brew unlink parallel
brew install moreutils gawk
if: matrix.os == 'macos-latest'
- name: Get Sources
uses: actions/checkout@v2
- name: Test (macOS)
- name: Test
run: |
export PATH="$PATH:/snap/bin"
make test
shell: bash
if: matrix.os == 'macos-latest'
- name: Build (Linux)
run: debuild -uc -us
run: DEB_BUILD_OPTIONS=nocheck debuild -us -uc
if: matrix.os != 'macos-latest'