File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
cookbooks/travis_ci_ubuntu_2204/attributes Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 150
150
java
151
151
php
152
152
generic
153
- shell
154
153
node_js
155
154
smalltalk
156
155
shell
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ main() {
17
17
18
18
# wget https://bootstrap.pypa.io/get-pip.py
19
19
# sudo python3 get-pip.py
20
- pip install pip-review
20
+ pip install --upgrade pip pyopenssl certifi rsa pytest oauthlib testresources setuptools dbus-python numpy pip-review
21
21
pip-review --auto
22
22
23
23
echo " Appling docker buildx fix"
@@ -27,7 +27,15 @@ main() {
27
27
echo " deb [arch=$( dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $( . /etc/os-release && echo " $VERSION_CODENAME " ) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
28
28
sudo apt-get update -y
29
29
sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
30
- # pip install --upgrade pip pyopenssl certifi rsa pytest oauthlib testresources setuptools numpy
30
+
31
+ # Install required clang
32
+ clang_version=18
33
+ wget https://apt.llvm.org/llvm.sh
34
+ chmod +x llvm.sh
35
+ sudo ./llvm.sh $clang_version
36
+
37
+ # Update composer
38
+ /home/travis/.phpenv/shims/composer self-update
31
39
32
40
}
33
41
You can’t perform that action at this time.
0 commit comments