diff options
| author | Colin Davidson <colrdavidson@gmail.com> | 2022-03-09 07:18:41 -0800 |
|---|---|---|
| committer | Colin Davidson <colrdavidson@gmail.com> | 2022-03-09 07:18:41 -0800 |
| commit | 3bd1ac4c82a0e6944f3218ad38c4f5f5995d703e (patch) | |
| tree | 0f437ca9c0c246a0c394d5fbf6227b821e53f90d | |
| parent | 7adaa4dc2b3784997ad38e499133bdfe4651c02c (diff) | |
test adjusting apt arg order
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cbe3fc08c..d5179e51b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Download LLVM, botan - run: sudo apt-get install llvm-11 clang-11 llvm libbotan-2-dev botan + run: sudo apt-get install llvm llvm-11 clang-11 libbotan-2-dev botan - name: build odin run: ./build_odin.sh release - name: Odin version |