name: "CodeQL"
+env:
+ OPENSSL_BRANCH: openssl-3.0.0-alpha6
+ #RPATH: "-Wl,-rpath=${PREFIX}/lib"
+ #PREFIX: ${HOME}/opt
+ #PATH: ${PREFIX}/bin:${PATH}
+
on:
push:
branches: [master, ]
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
+ # languages: cpp
# Override language selection by uncommenting this and choosing your languages
# with:
- # languages: go, javascript, csharp, python, cpp, java
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- - name: Autobuild
- uses: github/codeql-action/autobuild@v1
+ #- name: Autobuild
+ # uses: github/codeql-action/autobuild@v1
# âšī¸ Command-line programs to run using the OS shell.
# đ https://git.io/JvXDl
# and modify them (or add more) to build your code if your project
# uses a compiled language
- #- run: |
- # make bootstrap
- # make release
+ - run: |
+ curl -L https://cpanmin.us | sudo perl - --sudo App::cpanminus
+ sudo cpanm --notest Test2::V0 > build.log 2>&1 || (cat build.log && exit 1)
+ if [ "$APT_INSTALL" ]; then sudo apt-get install -y $APT_INSTALL; fi
+ git clone --depth 1 -b ${OPENSSL_BRANCH} https://github.com/openssl/openssl.git
+ export PREFIX=`pwd`/opt
+ export RPATH="-Wl,-rpath=${PREFIX}/lib"
+ cd openssl
+ git describe --always --long
+ ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} ${RPATH}
+ make -s build_libs
+ make -s build_programs
+ make -s install_sw
+ cd ..
+ set -e
+ mkdir build
+ cd build
+ cmake -DOPENSSL_ROOT_DIR=${PREFIX} -DOPENSSL_LIBRARIES=${PREFIX}/lib -DOPENSSL_ENGINES_DIR=${PREFIX}/engines ${ASAN} ..
+ make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1