aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2023-04-20 08:15:49 -0700
committerTom Stellard <tstellar@redhat.com>2023-04-20 08:15:50 -0700
commit93d6289c987a68c463079100c25d601e71153f2f (patch)
tree3e6882a9ec6d004d4799e4a3582bb3ea5421eb1d /.github
parent626f6ee7f8f15391de7c4f259e82e701aa1ec20b (diff)
downloadllvm-93d6289c987a68c463079100c25d601e71153f2f.zip
llvm-93d6289c987a68c463079100c25d601e71153f2f.tar.gz
llvm-93d6289c987a68c463079100c25d601e71153f2f.tar.bz2
workflows/release-tasks: Always run apt-get update before installing deps
There is a bug in the package tree of on the default images that causes some dependencies not to be found. Running apt-get gets us the latest package lists rather than relying on the default lists in the GitHub Runner imgae, which can be up to a week old. Running apt-get update before intstalling packages is also recommended in the official github documentation: https://docs.github.com/en/actions/using-github-hosted-runners/customizing-github-hosted-runners#installing-software-on-ubuntu-runners Reviewed By: thieta Differential Revision: https://reviews.llvm.org/D148741
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release-tasks.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/release-tasks.yml b/.github/workflows/release-tasks.yml
index 7604679..0d250a6 100644
--- a/.github/workflows/release-tasks.yml
+++ b/.github/workflows/release-tasks.yml
@@ -26,6 +26,7 @@ jobs:
- name: Install Dependencies
run: |
+ sudo apt-get update \
sudo apt-get install -y \
doxygen \
graphviz \