-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update documentation * no longer building catch2 and test for macos
- Loading branch information
1 parent
989c1be
commit 8058598
Showing
4 changed files
with
107 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,22 +40,12 @@ jobs: | |
cmake ../cmake | ||
make | ||
make install | ||
- name: Install Catch2 | ||
working-directory: ${{ github.workspace }} | ||
run: | | ||
git clone --branch v2.13.6 https://github.com/catchorg/Catch2.git | ||
cd Catch2 | ||
mkdir build | ||
cd build | ||
cmake ../ | ||
make | ||
make install | ||
- name: Building localproxy | ||
working-directory: ${{ github.workspace }} | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/[email protected]/1.1.1s/ -DOPENSSL_LIBRARIES=/usr/local/Cellar/[email protected]/1.1.1s/lib/ | ||
cmake .. -DBUILD_TESTS=OFF -DOPENSSL_ROOT_DIR=/usr/local/Cellar/[email protected]/1.1.1s/ -DOPENSSL_LIBRARIES=/usr/local/Cellar/[email protected]/1.1.1s/lib/ | ||
make | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -107,7 +97,7 @@ jobs: | |
run: | | ||
mkdir build | ||
cd build | ||
cmake .. | ||
cmake .. -DBUILD_TESTS=OFF | ||
make | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -180,7 +170,7 @@ jobs: | |
run: | | ||
mkdir build | ||
cd build | ||
cmake -DBOOST_PKG_VERSION=1.76.0 -DWIN32_WINNT=0x0A00 -DBoost_USE_STATIC_LIBS=ON -DCMAKE_PREFIX_PATH="C:\Boost;C:\Program Files (x86)\Catch2;C:\Program Files (x86)\protobuf;C:\Program Files\OpenSSL" -G "Visual Studio 16 2019" -A x64 ..\ | ||
cmake -DBUILD_TESTS=OFF -DBOOST_PKG_VERSION=1.76.0 -DWIN32_WINNT=0x0A00 -DBoost_USE_STATIC_LIBS=ON -DCMAKE_PREFIX_PATH="C:\Boost;C:\Program Files (x86)\Catch2;C:\Program Files (x86)\protobuf;C:\Program Files\OpenSSL" -G "Visual Studio 16 2019" -A x64 ..\ | ||
msbuild localproxy.vcxproj -p:Configuration=Release | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v3 | ||
|
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
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
Oops, something went wrong.