We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4611831 commit 1eb52ddCopy full SHA for 1eb52dd
.github/workflows/main.yml
@@ -99,13 +99,16 @@ jobs:
99
run: |
100
mkdir jdk-dl
101
${MX_PATH}/mx fetch-jdk --java-distribution ${JDK} --to jdk-dl --alias ${JAVA_HOME}
102
+ - name: Update dependency cache
103
+ if: ${{ contains(matrix.env.GATE, 'debug') || contains(matrix.env.GATE, 'style') }}
104
+ run: sudo apt update
105
- name: Debug dependencies
106
if: ${{ contains(matrix.env.GATE, 'debug') }}
107
run: sudo apt install gdb
108
- name: Style dependencies
109
if: ${{ contains(matrix.env.GATE, 'style') }}
110
- sudo apt install python-pip
111
+ sudo apt install python-pip python-setuptools
112
sudo pip install astroid==1.1.0
113
sudo pip install pylint==1.1.0
114
- name: Build GraalVM and run gate
0 commit comments