Add manpath.d entry #15
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: "CodeQL macOS" | |
on: | |
push: | |
pull_request: | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: macos-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
#- name: csrutil disable | |
# run: | | |
# sudo csrutil disable | |
#- name: csrutil enable | |
# run: | | |
# sudo csrutil enable --without kext | |
#- name: spctl kext-consent disable | |
# run: | | |
# sudo spctl kext-consent disable | |
- name: install deps | |
run: | | |
brew install automake libtool gawk coreutils | |
#- name: install deps | |
# run: | | |
#brew install [email protected] | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
# Override language selection by uncommenting this and choosing your languages | |
with: | |
languages: cpp | |
- name: autogen | |
run: | | |
./autogen.sh | |
- name: configure | |
run: | | |
#https://stackoverflow.com/a/62591864 | |
./configure CPPFLAGS="-I/usr/local/opt/gettext/include -I/usr/local/opt/[email protected]/include" LDFLAGS="-L/usr/local/opt/gettext/lib/ -L/usr/local/opt/[email protected]/lib" | |
- name: build | |
run: | | |
make -j$(sysctl -n hw.ncpu) | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |