Skip to content

Commit 9732c73

Browse files
committed
fix pipeline
1 parent 939efbb commit 9732c73

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,36 @@ jobs:
7575
with:
7676
ref: ${{ env.BRANCH_NAME }}
7777

78+
# using git commit sha for version of action to ensure we have stable version
79+
- name: Install asdf
80+
uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
81+
with:
82+
asdf_branch: v0.14.1
83+
84+
- name: Cache asdf
85+
uses: actions/cache@v4
86+
with:
87+
path: |
88+
~/.asdf
89+
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}
90+
restore-keys: |
91+
${{ runner.os }}-asdf-
92+
93+
- name: Install asdf dependencies in .tool-versions
94+
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6
95+
with:
96+
asdf_branch: v0.14.1
97+
env:
98+
PYTHON_CONFIGURE_OPTS: --enable-shared
99+
78100
- name: Install dependencies
79101
run: |
80102
make install
81103
82104
- name: Package code
83105
run: |
84106
make package
107+
85108
- uses: actions/upload-artifact@v4
86109
name: Upload packaged code
87110
with:

0 commit comments

Comments
 (0)