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

github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <kpu@users.noreply.github.com>2022-02-21 12:59:21 +0300
committerGitHub <noreply@github.com>2022-02-21 12:59:21 +0300
commit217e219a34f8ac5d096b2fff3dede82b5a182a88 (patch)
tree34839e8910c13f3e073628f202ffded491ec9c34
parentb32c19389737a5def8bbc4623de809ced3091187 (diff)
parentb439f736de31e4e8918e26d33af4d9d37d8baf2b (diff)
Merge pull request #373 from kpu/fix-ubuntu
[CI] Maybe an apt-get update first?
-rw-r--r--.github/workflows/ubuntu.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 9129c89..1fd1f18 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -13,7 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: dependencies
- run: sudo apt-get install -y build-essential libboost-all-dev cmake zlib1g-dev libbz2-dev liblzma-dev
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y build-essential libboost-all-dev cmake zlib1g-dev libbz2-dev liblzma-dev
- name: cmake
run: |
cmake -E make_directory build