Skip to content

Commit

Permalink
Problem matcher for compiler warnings (#1694)
Browse files Browse the repository at this point in the history
  • Loading branch information
thommey authored Oct 6, 2024
1 parent d2f747a commit 4c3b90f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
cd tcl${{ matrix.tcl_version }}/unix && \
./configure --prefix=$HOME/tcl && \
make -j4 && make install
- uses: ammaraskar/gcc-problem-matcher@master
- name: Build
run: |
./configure --with-tcl=$HOME/tcl/lib | tee configure.log
Expand Down Expand Up @@ -58,6 +59,7 @@ jobs:
sha256sum --status --check <(echo f1d9f3ed1b85a82ecf80d0e2d389e1fda3fca9a4dba0bf07adbf231e1a5e2fd6 openssl-0.9.8zh.tar.gz) && \
tar xzf openssl-0.9.8zh.tar.gz && \
cd openssl-0.9.8zh && ./config --prefix=$HOME/ssl -fPIC && make -j4 && make install_sw
- uses: ammaraskar/gcc-problem-matcher@master
- name: Build
run: |
cd $GITHUB_WORKSPACE/eggdrop
Expand Down Expand Up @@ -86,6 +88,7 @@ jobs:
sha256sum --status --check <(echo ecd0c6ffb493dd06707d38b14bb4d8c2288bb7033735606569d8f90f89669d16 openssl-1.0.2u.tar.gz) && \
tar xzf openssl-1.0.2u.tar.gz && \
cd openssl-1.0.2u && ./config --prefix=$HOME/ssl -fPIC && make -j4 && make install_sw
- uses: ammaraskar/gcc-problem-matcher@master
- name: Build
run: |
cd $GITHUB_WORKSPACE/eggdrop
Expand Down Expand Up @@ -117,6 +120,7 @@ jobs:
- uses: actions/checkout@v4
with:
path: 'eggdrop'
- uses: ammaraskar/gcc-problem-matcher@master
- name: Build
run: |
cd $GITHUB_WORKSPACE/eggdrop
Expand Down Expand Up @@ -159,6 +163,7 @@ jobs:
path: 'eggdrop'
- name: install dependencies
run: sudo apt-get update && sudo apt-get install tcl tcl-dev
- uses: ammaraskar/gcc-problem-matcher@master
- name: Build
run: |
cd $GITHUB_WORKSPACE/eggdrop
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
- uses: actions/checkout@v4
- name: install dependencies
run: sudo apt-get update && sudo apt-get install clang tcl tcl-dev openssl libssl-dev
- uses: ammaraskar/gcc-problem-matcher@master
if: ${{ matrix.cc == 'gcc' }}
- name: Build
env:
CC: ${{ matrix.cc }}
Expand All @@ -35,5 +37,6 @@ jobs:
- uses: actions/checkout@v4
- name: install dependencies
run: sudo apt-get update && sudo apt-get install tcl tcl-dev openssl libssl-dev
- uses: ammaraskar/gcc-problem-matcher@master
- name: Build
run: ./configure ${{ matrix.conf_tls }} ${{ matrix.conf_ipv6 }} ${{ matrix.conf_tdns }} && make config && make -j4

0 comments on commit 4c3b90f

Please sign in to comment.