diff options
author | deadprogram <[email protected]> | 2021-02-23 11:30:10 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-02-23 15:15:12 +0100 |
commit | afcc9d660831e2b648a3064c56ec3cca81be596d (patch) | |
tree | 0e11e40f97117cde1b91874ccd3486bf2f24fdf6 /.circleci | |
parent | 9f06798cb962d6e743d1558238c07a292bee4141 (diff) | |
download | tinygo-afcc9d660831e2b648a3064c56ec3cca81be596d.tar.gz tinygo-afcc9d660831e2b648a3064c56ec3cca81be596d.zip |
build: add apt update that seems needed for when dependencies update or packages are removed
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 41598d6b8..bf36f30a2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -132,6 +132,7 @@ commands: - run: name: "Install apt dependencies" command: | + sudo apt-get update sudo apt-get install \ gcc-arm-linux-gnueabihf \ libc6-dev-armel-cross \ @@ -190,6 +191,7 @@ commands: - run: name: "Install apt dependencies" command: | + sudo apt-get update sudo apt-get install \ gcc-arm-linux-gnueabihf \ libc6-dev-armel-cross \ |