Skip to content

Commit

Permalink
test path
Browse files Browse the repository at this point in the history
  • Loading branch information
alexddobkin committed Feb 13, 2025
1 parent 48995f7 commit d7497e2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,7 @@ jobs:
########
# Linux
- name: Python Wheel Steps (Linux - cibuildwheel)
run: |
export PATH=/usr/bin:$PATH
make dist-py-cibw
run: make dist-py-cibw
env:
CIBW_BUILD: "${{ matrix.cibuildwheel }}-manylinux*"
CIBW_ENVIRONMENT_LINUX: CSP_MANYLINUX="ON" CCACHE_DIR="/host/home/runner/work/csp/csp/.ccache" VCPKG_DEFAULT_BINARY_CACHE="/host${{ env.VCPKG_DEFAULT_BINARY_CACHE }}" VCPKG_DOWNLOADS="/host${{ env.VCPKG_DOWNLOADS }}"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ dependencies-debian: ## install dependencies for linux
apt-get install -y autoconf autoconf-archive automake bison cmake curl flex libtool ninja-build pkg-config tar unzip zip

dependencies-fedora: ## install dependencies for linux
yum install -y pkgconf autoconf autoconf-archive automake bison ccache cmake curl flex libtool openssl-devel perl-IPC-Cmd pkg-config tar unzip zip
yum install -y autoconf autoconf-archive automake bison ccache cmake curl flex libtool perl-IPC-Cmd pkg-config tar unzip zip

dependencies-vcpkg: ## install dependencies via vcpkg
cd vcpkg && ./bootstrap-vcpkg.sh && ./vcpkg install
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@
except subprocess.CalledProcessError as e:
print("Error obtaining Homebrew prefix for autoconf-archive:", e)
aclocal_path = None

elif platform.system() != "Windows":
os.environ["PATH"] = f"/usr/bin:{os.environ['PATH']}"

if which("ccache") and os.environ.get("CSP_USE_CCACHE", "") != "0":
cmake_args.append("-DCSP_USE_CCACHE=On")

Expand Down

0 comments on commit d7497e2

Please sign in to comment.