Skip to content

Commit

Permalink
Update Github Actions build rules to configure/build libcups in libcu…
Browse files Browse the repository at this point in the history
…ps subdir.
  • Loading branch information
michaelrsweet committed Oct 12, 2023
1 parent 2f622fd commit f68ac78
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
repository: OpenPrinting/libcups
path: libcups
- name: Configure libcups3
run: ./configure --enable-debug
run: cd libcups; ./configure --enable-debug
- name: Build/install libcups3
run: make && sudo make install
run: cd libcups; make && sudo make install
- name: Configure PAPPL
env:
CC: /usr/bin/gcc
Expand Down Expand Up @@ -58,9 +58,9 @@ jobs:
repository: OpenPrinting/libcups
path: libcups
- name: Configure libcups3
run: ./configure --enable-debug
run: cd libcups; ./configure --enable-debug
- name: Build/install libcups3
run: make && sudo make install
run: cd libcups; make && sudo make install
- name: Configure PAPPL
run: ./configure --enable-debug --enable-maintainer --with-sanitizer=address
- name: Build PAPPL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
repository: OpenPrinting/libcups
path: libcups
- name: Configure libcups3
run: ./configure --enable-debug
run: cd libcups; ./configure --enable-debug
- name: Build/install libcups3
run: make && sudo make install
run: cd libcups; make && sudo make install
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
with:
repository: OpenPrinting/libcups
path: libcups
- name: Configure libcups3
run: cd libcups; ./configure --enable-debug
- name: Build/install libcups3
run: cd libcups; make && sudo make install
- name: Download Coverity Build Tool
run: |
wget -q https://scan.coverity.com/download/linux64 --post-data token="$TOKEN&project=$GITHUB_REPOSITORY" -O cov-analysis-linux64.tar.gz
Expand Down

0 comments on commit f68ac78

Please sign in to comment.