Skip to content

Commit

Permalink
build python venv
Browse files Browse the repository at this point in the history
  • Loading branch information
multiphaseCFD committed Aug 16, 2024
1 parent 0decf35 commit bc64e1a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-wheel-linux-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
- name: Checkout Catalyst repo
uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'

- name: Set Ownership in Container
run: |
# To fix the git issue with the owner of the checkout dir
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-wheel-macos-arm64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
- name: Checkout Catalyst repo
uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'

# Cache external project sources
# Hopefully these can be shared with the main check-catalyst action since we don't run this
# build in a container.
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-wheel-macos-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ jobs:
- name: Checkout Catalyst repo
uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'

# Cache external project sources
- name: Cache LLVM Source
id: cache-llvm-source
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/check-catalyst.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
- name: Checkout Catalyst repo
uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'

- name: Install dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit bc64e1a

Please sign in to comment.