Skip to content

Commit 640b450

Browse files
committed
Merge bitcoin/bitcoin#28925: ci: Update apt cache
710da28 ci: Switch from `apt` to `apt-get` (Hennadii Stepanov) a6cc059 ci: Update apt cache (Hennadii Stepanov) Pull request description: This PR aims to fix the recent errors in the "test each commit" CI job. ACKs for top commit: maflcko: lgtm ACK 710da28 ismaelsadeeq: utACK 710da28 Tree-SHA512: b42340aea00e80f791000e19791629f27df2da98adefb839cb4389d81b5eee094089ea5092a2d7b56b3990683a72e4d2fa986fc86c823c7245649af37873b790
2 parents daa56f7 + 710da28 commit 640b450

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ jobs:
6060
# ancestors from the rev-list output as described in:
6161
# https://git-scm.com/docs/git-rev-list
6262
echo "TEST_BASE=$(git rev-list -n$((${{ env.MAX_COUNT }} + 1)) --reverse HEAD ^$(git rev-list -n1 --merges HEAD)^@ | head -1)" >> "$GITHUB_ENV"
63-
- run: sudo apt install clang ccache build-essential libtool autotools-dev automake pkg-config bsdmainutils python3-zmq libevent-dev libboost-dev libsqlite3-dev libdb++-dev systemtap-sdt-dev libminiupnpc-dev libnatpmp-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools qtwayland5 libqrencode-dev -y
63+
- run: |
64+
sudo apt-get update
65+
sudo apt-get install clang ccache build-essential libtool autotools-dev automake pkg-config bsdmainutils python3-zmq libevent-dev libboost-dev libsqlite3-dev libdb++-dev systemtap-sdt-dev libminiupnpc-dev libnatpmp-dev libqt5gui5 libqt5core5a libqt5dbus5 qttools5-dev qttools5-dev-tools qtwayland5 libqrencode-dev -y
6466
- name: Compile and run tests
6567
run: |
6668
# Run tests on commits after the last merge commit and before the PR head commit

0 commit comments

Comments
 (0)