From commits-return-6817-archive-asf-public=cust-asf.ponee.io@nuttx.apache.org Thu Apr 9 12:02:05 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 67815180634 for ; Thu, 9 Apr 2020 14:02:05 +0200 (CEST) Received: (qmail 48096 invoked by uid 500); 9 Apr 2020 12:02:04 -0000 Mailing-List: contact commits-help@nuttx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nuttx.apache.org Delivered-To: mailing list commits@nuttx.apache.org Received: (qmail 48059 invoked by uid 99); 9 Apr 2020 12:02:04 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Apr 2020 12:02:04 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 12CB68B69B; Thu, 9 Apr 2020 12:02:04 +0000 (UTC) Date: Thu, 09 Apr 2020 12:02:04 +0000 To: "commits@nuttx.apache.org" Subject: [incubator-nuttx-apps] branch master updated: CI: Add macOS builds MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158643372401.10323.9705921683426314503@gitbox.apache.org> From: xiaoxiang@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-nuttx-apps X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 6e02a2b20adb6c9239eaa1395189387d5c7bd552 X-Git-Newrev: 3b1b5648d2f5b0511d608776fffcdd8090f91733 X-Git-Rev: 3b1b5648d2f5b0511d608776fffcdd8090f91733 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 3b1b564 CI: Add macOS builds 3b1b564 is described below commit 3b1b5648d2f5b0511d608776fffcdd8090f91733 Author: YAMAMOTO Takashi AuthorDate: Thu Apr 9 14:35:16 2020 +0900 CI: Add macOS builds This is a sync from testing repo. --- .github/workflows/build.yml | 49 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cf37b70..71957fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ on: pull_request: jobs: - build: + build-linux: runs-on: ubuntu-18.04 env: DOCKER_BUILDKIT: 1 @@ -65,3 +65,50 @@ jobs: run: | cd testing ./cibuild.sh -x -G testlist/${{matrix.boards}}.dat + + build-macos: + runs-on: macos-10.15 + + strategy: + matrix: + boards: [arm-13, mips-riscv-x86-xtensa, sim] + + steps: + - name: Checkout nuttx repo + uses: actions/checkout@v2 + with: + repository: apache/incubator-nuttx + path: nuttx + fetch-depth: 0 + + - name: Fetch nuttx tags + run: | + cd nuttx + git fetch --tags + + - name: Checkout apps repo + uses: actions/checkout@v2 + with: + repository: apache/incubator-nuttx-apps + path: apps + fetch-depth: 0 + + - name: Checkout testing repo + uses: actions/checkout@v2 + with: + repository: apache/incubator-nuttx-testing + path: testing + + - name: Restore cache + id: cache-tools + uses: actions/cache@v1 + env: + cache-name: ${{ runner.os }}-cache-tools + with: + path: prebuilt + key: ${{ runner.os }}-tools-${{ hashFiles('./testing/cibuild.sh') }} + + - name: Run builds + run: | + cd testing + ./cibuild.sh -i -x -G testlist/${{matrix.boards}}.dat