skip setuser_privileges for non-etc-passwd users #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: libsrs2 Ubuntu, Mac OSX CI | |
on: | |
push: | |
paths: | |
- '**/libsrs2-x/**' | |
- .github/workflows/libsrs2-c-cpp.yml | |
- '!**/libsrs2-x/debian/*' | |
- '!**/libsrs2-x/libsrs2.spec.in' | |
- '!**/doc/*' | |
- '!**.md' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: ${{ matrix.host }}-${{ matrix.config.name }} | |
runs-on: ${{ matrix.host }} | |
strategy: | |
fail-fast: false | |
matrix: | |
host: [ubuntu-latest, macos-latest] | |
steps: | |
- name: extra_packages | |
run: if [ "${OS}" = "macos-latest" ]; then brew install automake autoconf libtool pkgconfig openssl; fi | |
env: | |
OS: ${{ matrix.host }} | |
- name: checkout_libsrs2 | |
uses: actions/checkout@v2 | |
- name: build_libsrs2 | |
run: cd libsrs2-x; ./default.configure; make |