diff options
author | Saturneric <[email protected]> | 2022-05-12 17:16:16 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-05-12 17:16:16 +0000 |
commit | 903f75303a51079ade95cb5db158c26863788e5c (patch) | |
tree | aade34a8a17e6926f97be342601119b656e4afde | |
parent | feat(project): upgrade version to v2.0.8 (diff) | |
download | GpgFrontend-903f75303a51079ade95cb5db158c26863788e5c.tar.gz GpgFrontend-903f75303a51079ade95cb5db158c26863788e5c.zip |
feat(ci): remove OPENSSL_ROOT_DIR in cmake config
-rw-r--r-- | .github/workflows/debug.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index b8468ba7..345a724e 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -137,7 +137,7 @@ jobs: - name: Build GpgFrontend (macOS) # Build your GpgFrontend with the given configuration run: | - cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_TEST_UI=ON -DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected] + cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DGPGFRONTEND_BUILD_TYPE_TEST_UI=ON cmake --build ${{github.workspace}}/build --config {{$env.BUILD_TYPE}} -- -v if: matrix.os == 'macos-10.15' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 32577559..5d27d6fd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -143,7 +143,7 @@ jobs: - name: Build GpgFrontend (macOS) # Build your GpgFrontend with the given configuration run: | - cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DOPENSSL_ROOT_DIR=/usr/local/opt/[email protected] + cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} cmake --build ${{github.workspace}}/build --config {{$env.BUILD_TYPE}} -- -v if: matrix.os == 'macos-10.15' |