瀏覽代碼

Add CircleCI gcc-9 build

master
Arun Prakash Jana 5 年之前
父節點
當前提交
82e305dc35
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 25 行新增0 行删除
  1. +25
    -0
      .circleci/config.yml

+ 25
- 0
.circleci/config.yml 查看文件

@@ -43,6 +43,30 @@ jobs:
ls -l nnn
make clean

gcc-9:
docker:
- image: ubuntu:18.04
working_directory: ~/nnn
environment:
CC: gcc-9
CI_FORCE_TEST: 1
steps:
- run:
command: |
apt update -qq
apt install -y --no-install-recommends software-properties-common
apt-add-repository -y ppa:jonathonf/gcc-9.0
apt update -qq
apt install -y --no-install-recommends git gcc-9 make pkg-config libncursesw5-dev libreadline-dev
- checkout
- run:
command: |
export CFLAGS=-Werror
make clean
make strip
ls -l nnn
make clean

package-and-publish:
machine: true
working_directory: ~/nnn
@@ -67,6 +91,7 @@ workflows:
jobs: &all-tests
- gcc
- gcc-8
- gcc-9

nightly:
triggers:


Loading…
取消
儲存