浏览代码

Make switch-to-latest-clang less verbose and other small fixes.

master
Ray Burgemeestre 3 年前
父节点
当前提交
6d05aed453
共有 3 个文件被更改,包括 4 次插入3 次删除
  1. +2
    -0
      fpm/Dockerfile-ubuntu2004
  2. +1
    -1
      fpm/Makefile
  3. +1
    -2
      switch-to-latest-clang

+ 2
- 0
fpm/Dockerfile-ubuntu2004 查看文件

@@ -12,6 +12,8 @@ RUN set -x \
ca-certificates \
libffi-dev \
ruby-ffi \
rpm \
vim \
&& gem install fpm \
&& mkdir /src/


+ 1
- 1
fpm/Makefile 查看文件

@@ -5,7 +5,7 @@ ubuntu1804fpm:
docker build . -f Dockerfile-ubuntu1804 -t rayburgemeestre/fpm-ubuntu:18.04

ubuntu2004fpm:
docker pull rayburgemeestre/fpm-ubuntu:18.04 || true
docker pull rayburgemeestre/fpm-ubuntu:20.04 || true
docker build . -f Dockerfile-ubuntu2004 -t rayburgemeestre/fpm-ubuntu:20.04

publish1804:

+ 1
- 2
switch-to-latest-clang 查看文件

@@ -1,7 +1,6 @@
#!/bin/bash

set -ex

# set -ex
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-12 40
update-alternatives --install /usr/bin/cc cc /usr/bin/clang-12 40
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 40

正在加载...
取消
保存