Skip to content

Commit

Permalink
Removing unused workflow bits, allow manual triggers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Castaglia committed Dec 17, 2023
1 parent c8c7508 commit a4e3403
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- main
schedule:
- cron: '11 1 * * 0'
workflow_dispatch:

jobs:
build:
Expand Down Expand Up @@ -95,23 +96,13 @@ jobs:
# for OpenSSL support
apt-get install -y libssl-dev
# for integration/regression test
# for test code coverage
apt-get install -y lcov ruby
gem install coveralls-lcov
# for HTML validation
apt-get install -y tidy
# for debugging
clang --version
gcc --version
openssl version -a
- name: Prepare code coverage
if: ${{ matrix.container == 'ubuntu:20.04' }}
run: |
lcov --directory proftpd --zerocounters
- name: Build as static module
env:
CC: ${{ matrix.compiler }}
Expand Down
4 changes: 0 additions & 4 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,3 @@ clean:
dist: clean
$(RM) Makefile $(MODULE_NAME).h config.status config.cache config.log *.gcda *.gcno
-$(RM) -r .libs/ .git/ CVS/ RCS/

# Run the API unit tests
check:
test -z "$(ENABLE_TESTS)" || (cd t/ && $(MAKE) api-tests)

0 comments on commit a4e3403

Please sign in to comment.