Skip to content

Commit

Permalink
Reduce changes to min
Browse files Browse the repository at this point in the history
  • Loading branch information
leet4tari committed Nov 22, 2024
1 parent 6d02662 commit a5c61eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,15 +231,17 @@ jobs:
rustup target add ${{ matrix.builds.target }}
- name: Install Windows - debugging
if: startsWith(runner.os,'Windows')
if: ${{ false }}
#if: startsWith(runner.os,'Windows')
continue-on-error: true
shell: cmd
run: |
echo "Debugging ..."
set open
- name: Set Perl environment variables
if: runner.os == 'Windows'
if: ${{ false }}
#if: runner.os == 'Windows'
run: |
echo "PERL=$((where.exe perl)[0])" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
echo "OPENSSL_SRC_PERL=$((where.exe perl)[0])" | Out-File -FilePath $env:GITHUB_ENV -Append -Encoding utf8
Expand Down Expand Up @@ -296,10 +298,11 @@ jobs:
#echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_ENV
#echo "LIBCLANG_PATH=C:\Program Files\LLVM\bin" >> $GITHUB_ENV
#echo "C:\Strawberry\perl\bin" >> $GITHUB_PATH
# Needed for openssl via vcpkg
echo "VCPKG_ROOT=C:\vcpkg" >> $GITHUB_ENV
echo "OPENSSL_DIR=C:\vcpkg\packages\openssl_x64-windows-static" >> $GITHUB_ENV
echo "OPENSSL_STATIC=Yes" >> $GITHUB_ENV
echo "VCPKGRS_DYNAMIC=1" >> $GITHUB_ENV
#echo "OPENSSL_DIR=C:\vcpkg\packages\openssl_x64-windows-static" >> $GITHUB_ENV
#echo "OPENSSL_STATIC=Yes" >> $GITHUB_ENV
#echo "VCPKGRS_DYNAMIC=1" >> $GITHUB_ENV
- name: Cache cargo files and outputs
if: ${{ ( ! startsWith(github.ref, 'refs/tags/v') ) && ( ! matrix.builds.cross ) && ( env.CARGO_CACHE ) }}
Expand Down
1 change: 0 additions & 1 deletion base_layer/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ tiny-keccak = { package = "tari-tiny-keccak", version = "2.0.2", features = [
dirs-next = "1.0.2"
hickory-client = { version = "0.25.0-alpha.2", features = ["dns-over-rustls", "dnssec-openssl"] }
anyhow = "1.0.53"
#openssl = { version = "0.10.66", features = ["vendored"] }

[dev-dependencies]
criterion = { version = "0.4.0" }
Expand Down

0 comments on commit a5c61eb

Please sign in to comment.