File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535
3636 runs-on : ${{ matrix.os.id }}
3737 env :
38- ARTIFACT_PATH : graalpy-native-standalone{{ matrix.os.platform }}
38+ ARTIFACT_PATH : graalpy-native-standalone$ {{ matrix.os.platform }}
3939 ARTIFACT_PATH_PREFIX : graalpynative
40+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4041
4142 steps :
4243 - name : Install CMake (Linux)
7273 - name : Get GraalPy EA build
7374 if : ${{ matrix.os.platform == 'macos' }}
7475 run : |
75- tarball="$(curl -s "https://api.github.com/repos/graalvm/graalvm-ce-dev-builds/releases/latest" | jq -r --arg artifact "graalpy-community-dev-${{ matrix.os.platform }}-${{matrix.os.arch}}.tar.gz" '.assets[] | select(.name == $artifact) | .browser_download_url')"
76+ tarball="$(curl -sH "Authorization: token $GITHUB_TOKEN" "https://api.github.com/repos/graalvm/graalvm-ce-dev-builds/releases/latest" | jq -r --arg artifact "graalpy-community-dev-${{ matrix.os.platform }}-${{matrix.os.arch}}.tar.gz" '.assets[] | select(.name == $artifact) | .browser_download_url')"
7677 curl -sfL "$tarball" | tar xz
7778
7879 - name : Get GraalPy build artifact
You can’t perform that action at this time.
0 commit comments