mirror of
https://github.com/gulrak/filesystem.git
synced 2026-01-01 03:12:08 +08:00
Fix formatting and resolve expired GPG key issues in build_cmake.yml
This commit is contained in:
parent
ef40391bd8
commit
3634e15e6a
7
.github/workflows/build_cmake.yml
vendored
7
.github/workflows/build_cmake.yml
vendored
@ -229,7 +229,12 @@ jobs:
|
||||
- name: Install CMake and Ninja
|
||||
run: |
|
||||
apt-get update
|
||||
apt-get install -y cmake ninja-build
|
||||
# GCC 5-6 need --allow-unauthenticated due to expired Jessie GPG keys
|
||||
if [ "${{ matrix.compiler }}" = "gcc" ] && ([ "${{ matrix.version }}" = "5" ] || [ "${{ matrix.version }}" = "6" ]); then
|
||||
apt-get install -y --allow-unauthenticated cmake ninja-build
|
||||
else
|
||||
apt-get install -y cmake ninja-build
|
||||
fi
|
||||
|
||||
- name: Configure
|
||||
run: |
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user