Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OpenNMT/CTranslate2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Klein <guillaumekln@users.noreply.github.com>2021-02-25 16:31:32 +0300
committerGitHub <noreply@github.com>2021-02-25 16:31:32 +0300
commita6faddbdbf28e9c482d6397e926ee390216559b5 (patch)
treebedc3e94a0ed636b5f58ab97b31060f26891170b /.github
parent8afb2c71476ef5132908a4efe44674409854f290 (diff)
Run apt-get update before install in CI job (#408)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 03bf4425..1a913907 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -115,7 +115,9 @@ jobs:
submodules: recursive
- name: Install cross compiler and emulator
- run: sudo apt-get install -y g++-aarch64-linux-gnu gfortran-aarch64-linux-gnu qemu-user-static
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y g++-aarch64-linux-gnu gfortran-aarch64-linux-gnu qemu-user-static
- name: Build with OpenBLAS
if: matrix.backend == 'openblas'