1#*************************************************************************** 2# _ _ ____ _ 3# Project ___| | | | _ \| | 4# / __| | | | |_) | | 5# | (__| |_| | _ <| |___ 6# \___|\___/|_| \_\_____| 7# 8# Copyright (C) 2021, Daniel Stenberg, <daniel@haxx.se>, et al. 9# 10# This software is licensed as described in the file COPYING, which 11# you should have received as part of this distribution. The terms 12# are also available at https://curl.se/docs/copyright.html. 13# 14# You may opt to use, copy, modify, merge, publish, distribute and/or sell 15# copies of the Software, and permit persons to whom the Software is 16# furnished to do so, under the terms of the COPYING file. 17# 18# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19# KIND, either express or implied. 20# 21########################################################################### 22 23# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference 24version: 2.1 25 26commands: 27 configure: 28 steps: 29 - run: 30 command: | 31 ./buildconf 32 ./configure --enable-warnings --enable-werror --with-openssl 33 34 build: 35 steps: 36 - run: make 37 38 test: 39 steps: 40 - run: make test-nonflaky 41 42executors: 43 ubuntu: 44 machine: 45 image: ubuntu-2004:202010-01 46 47jobs: 48 basic: 49 executor: ubuntu 50 steps: 51 - checkout 52 - configure 53 - build 54 - test 55 56 arm: 57 machine: 58 image: ubuntu-2004:202101-01 59 resource_class: arm.medium 60 steps: 61 - checkout 62 - configure 63 - build 64 - test 65 66workflows: 67 x86-openssl: 68 jobs: 69 - basic 70 71 arm-openssl: 72 jobs: 73 - arm 74