CI: move apt install to ubuntu.yml

This commit is contained in:
Syping 2021-11-01 19:46:07 +01:00
parent 0ff2718cab
commit 4e06444e40
2 changed files with 1 additions and 4 deletions

View File

@ -1,3 +0,0 @@
#!/bin/bash
apt-get update -qq
apt-get install cmake git gcc g++ make ninja-build -qq

View File

@ -17,7 +17,7 @@ jobs:
with:
submodules: recursive
- name: Install packages
run: sudo .ci/ubuntu_install.sh
run: sudo apt-get update -qq && sudo apt-get install cmake git gcc g++ make ninja-build -qq
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
- name: Build