CI: move apt install to ubuntu.yml
This commit is contained in:
parent
0ff2718cab
commit
4e06444e40
2 changed files with 1 additions and 4 deletions
|
@ -1,3 +0,0 @@
|
|||
#!/bin/bash
|
||||
apt-get update -qq
|
||||
apt-get install cmake git gcc g++ make ninja-build -qq
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue