mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
5c5c453219
``` (248/297) Installing: system-group-hardware-20170617-19.2.noarch [..error] Installation of system-group-hardware-20170617-19.2.noarch failed: Error: Subprocess failed. Error: RPM failed: ERROR: neither groupadd nor busybox found! error: %prein(system-group-hardware-20170617-19.2.noarch) scriptlet failed, exit status 1 error: system-group-hardware-20170617-19.2.noarch: install failed Abort, retry, ignore? [a/r/i] (a): a Warning: %posttrans scripts skipped while aborting: pam-1.5.1-2.2.x86_64.rpm shadow-4.8.1-5.2.x86_64.rpm ``` Seems to be a bug in old docker/libseccomp from GH.
37 lines
956 B
YAML
37 lines
956 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
linux:
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
flavor: [debian, fedora, ubuntu]
|
|
|
|
name: Linux
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run tests
|
|
run: |
|
|
docker build -f Dockerfile.${{ matrix.flavor }} -t profanity .
|
|
docker run profanity ./ci-build.sh
|
|
|
|
macos:
|
|
runs-on: macos-latest
|
|
name: macOS
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run brew bundle
|
|
run: brew bundle
|
|
- name: Run tests
|
|
env:
|
|
# Ensure that "keg-only" Homebrew versions are used.
|
|
PKG_CONFIG_PATH: "/usr/local/opt/ncurses/lib/pkgconfig:/usr/local/opt/expat/lib/pkgconfig:/usr/local/opt/curl/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig:/usr/local/opt/libffi/lib/pkgconfig:/usr/local/opt/sqlite/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
run: ./ci-build.sh
|