-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
15 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 |
---|---|---|
|
@@ -101,10 +101,10 @@ jobs: | |
- name: Set up sccache | ||
uses: mozilla-actions/[email protected] | ||
|
||
# - name: Build zlib | ||
# shell: pwsh | ||
# run: | | ||
# & "${env:VCPKG_INSTALLATION_ROOT}/vcpkg" install zlib:x64-windows-static | ||
- name: Build zlib | ||
shell: pwsh | ||
run: | | ||
& "${env:VCPKG_INSTALLATION_ROOT}/vcpkg" install zlib:x64-windows-static | ||
# Clone the CIRCT repo and its submodules. Do shallow clone to save clone | ||
# time. | ||
|
@@ -115,19 +115,19 @@ jobs: | |
fetch-tags: true | ||
submodules: false | ||
|
||
# - name: Get shallow LLVM submodule | ||
# run: | | ||
# git submodule update --init --recursive --recommend-shallow --depth 1 | ||
- name: Get shallow LLVM submodule | ||
run: | | ||
git submodule update --init --recursive --recommend-shallow --depth 1 | ||
# # -------- | ||
# # Build and test CIRCT | ||
# # -------- | ||
# - name: Install dependencies | ||
# run: | | ||
# python3 -m pip install --upgrade pip | ||
# python3 -m pip install cibuildwheel twine | ||
# -------- | ||
# Build and test CIRCT | ||
# -------- | ||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install cibuildwheel twine | ||
# choco install ninja sccache | ||
choco install ninja sccache | ||
- name: Build wheel | ||
shell: cmd | ||
|