... so that we can test the workflows on different
docker images.
Closes #1
Signed-off-by: Michal Orzel <michal.orzel@arm.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
steps:
- name: Install
run: |
+ c=${{matrix.compiler}}
+ v=${c##llvm-}
+ case $c in
+ # Need all {llvm,clang,lld}-$v packages
+ llvm-*) EXTRA="clang-${v} lld-${v}" ;;
+ esac
+
sudo apt-get update -q
- sudo apt-get install ${{matrix.compiler}}
+ sudo apt-get install -y build-essential python ${{matrix.compiler}} ${EXTRA}
- uses: actions/checkout@v2