8000 CI: Implements Cross-Compile Builds for armhf, ppc64le, and s390x by seiko2plus · Pull Request #24479 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

CI: Implements Cross-Compile Builds for armhf, ppc64le, and s390x #24479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CI: Fix the cache path of Linux QEMU
  • Loading branch information
seiko2plus committed Aug 24, 2023
commit f012f1dd5006b6cb335ebf0da20714699f0d5f99
2 changes: 1 addition & 1 deletion .github/workflows/linux_qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
uses: actions/cache@v3
id: container-cache
with:
path: /docker_${{ matrix.BUILD_PROP[1] }}
path: ~/docker_${{ matrix.BUILD_PROP[1] }}
key: container-${{ runner.os }}-${{ matrix.BUILD_PROP[1] }}-${{ matrix.BUILD_PROP[2] }}-${{ hashFiles('build_requirements.txt') }}

- name: Creates new container
Expand Down
0