Skip to content

Commit 1eb52dd

Browse files
Run apt update in github CI
Install python-setuptools for style gates
1 parent 4611831 commit 1eb52dd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,16 @@ jobs:
9999
run: |
100100
mkdir jdk-dl
101101
${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
102105
- name: Debug dependencies
103106
if: ${{ contains(matrix.env.GATE, 'debug') }}
104107
run: sudo apt install gdb
105108
- name: Style dependencies
106109
if: ${{ contains(matrix.env.GATE, 'style') }}
107110
run: |
108-
sudo apt install python-pip
111+
sudo apt install python-pip python-setuptools
109112
sudo pip install astroid==1.1.0
110113
sudo pip install pylint==1.1.0
111114
- name: Build GraalVM and run gate

0 commit comments

Comments
 (0)