Skip to content

Commit

Permalink
Action CI: come back to actions/checkout@v2 + test DEBUG build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-naumov committed Jul 27, 2023
1 parent 6d6e801 commit 6931f6d
Showing 1 changed file with 28 additions and 3 deletions.
31 changes: 28 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- using: 'node16'
- uses: actions/checkout@v2

- name: Install dependency
working-directory: ${{github.workspace}}/src
Expand All @@ -34,7 +34,6 @@ jobs:
uname -a
clang -v
cc=clang ./configure --disable-pam CFLAGS='-Wall'
# -DDEBUG -Wno-implicit-function-declaration"
- name: Build
working-directory: ${{github.workspace}}/src
Expand All @@ -50,5 +49,31 @@ jobs:
echo "> screen -v"
./screen -v
echo "> screen --help"
./screen -help
./screen --help
- name: Clean
working-directory: ${{github.workspace}}/src
shell: bash
run: make clean

- name: Configure DEBUG
shell: bash
working-directory: ${{github.workspace}}/src
run: |
clang -v
cc=clang ./configure --disable-pam CFLAGS='-Wall -DDEBUG'
- name: Build DEBUG
working-directory: ${{github.workspace}}/src
shell: bash
run: make

- name: Test
working-directory: ${{github.workspace}}/src
shell: bash
run: |
echo "> screen -v"
./screen -v
echo "> screen --help"
./screen --help

0 comments on commit 6931f6d

Please sign in to comment.