-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from gerickson/user/gerickson/github-issue-26-…
…apple-silicon-ci-support Ensure that GitHub Workflow Actions Continuous Integration Works with Apple Silicon
- Loading branch information
Showing
80 changed files
with
10,522 additions
and
6,672 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# | ||
# Copyright 2019 Google LLC. All Rights Reserved. | ||
# Copyright 2017-2018 Nest Labs Inc. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
|
@@ -36,6 +37,7 @@ | |
# path = third_party/nlunit-test/repo | ||
# url = [email protected]:nestlabs/nlunit-test.git | ||
# branch = master | ||
# commit = 561a155bb7257e54198cf5496f74ed5bc41cf85f | ||
# update = none | ||
# | ||
|
||
|
@@ -56,6 +58,15 @@ abs_top_nlbuild_autotools_dir ?= $(abs_top_srcdir)/$(nlbuild_autotools_stem) | |
include $(abs_top_nlbuild_autotools_dir)/make/pre.mak | ||
include $(abs_top_nlbuild_autotools_dir)/make/host/tools/bootstrap.mak | ||
|
||
# If repos have been defined, create them as the default target goal; | ||
# otherwise, default to help. | ||
|
||
ifneq ($(REPOS),) | ||
.DEFAULT_GOAL := repos | ||
else | ||
.DEFAULT_GOAL := help | ||
endif # REPOS | ||
|
||
# | ||
# Add any project-specific bootstrap help commands to this | ||
# 'help-hook' target. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Name: Nest Labs Build - GNU Autotools | ||
Short Name: nlbuild-autotools | ||
URL: https://github.com/Nuovations/nlbuild-autotools/releases/download/1.7.8/nlbuild-autotools-1.7.8.tar.gz | ||
Version: 1.7.8 | ||
Date: 2024-08-02T19:19:46-07:00 | ||
License: Apache 2.0 | ||
|
||
Description: | ||
The Nest Labs Build - GNU Autotools (nlbuild-autotools) provides a customized, | ||
turnkey build system framework, based on GNU autotools, for standalone Nest | ||
Labs (or other) software packages that need to support not only building on and | ||
targeting against standalone build host systems but also embedded target | ||
systems using GCC-based or -compatible (such as clang/LLVM) toolchains. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.6.14 | ||
1.7.8 |
56 changes: 56 additions & 0 deletions
56
third_party/nlbuild-autotools/repo/.github/workflows/build.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# | ||
# Copyright 2024 Project nlbuild-autotools Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# | ||
# Description: | ||
# This file is the GitHub Actions hosted, distributed continuous | ||
# integration configuration file for the Nest Labs nlbuild-autotools | ||
# package. | ||
# | ||
|
||
--- | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
build: | ||
|
||
runs-on: ${{matrix.os['runs-on']}} | ||
name: "${{matrix.os['name']}}" | ||
|
||
strategy: | ||
matrix: | ||
os: | ||
- { name: macOS, runs-on: macos-latest } | ||
- { name: Linux, runs-on: ubuntu-latest } | ||
|
||
# At present, simply ensure that several targets can be | ||
# successfully built. | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build Distribution | ||
run: make -j dist | ||
|
||
- name: Build Host Tools | ||
run: make -j tools | ||
|
||
- name: Build Host Tools Distribution | ||
run: make -j toolsdist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
.local-version | ||
tools/host/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
This is the official list of nlbuild-autotools authors for copyright purposes. | ||
|
||
This does not necessarily list everyone who has contributed code, since in | ||
some cases, their employer may be the copyright holder. To see the full list | ||
of contributors, see the revision history in source control or | ||
https://github.com/nestlabs/nlbuild-autotools/graphs/contributors. | ||
|
||
Authors who wish to be recognized in this file should add themselves (or | ||
their employing organization, as appropriate): | ||
|
||
# Organizations | ||
|
||
* Apple, Inc. | ||
* Google LLC | ||
* Nest Labs, Inc. | ||
|
||
# Individuals | ||
|
||
* Giuseppe Andreello <[email protected]> | ||
* Adam Eliot <[email protected]> | ||
* Grant Erickson <[email protected]> | ||
* Betsy Lichtenberg <[email protected]> | ||
* Robert Szewczyk <[email protected]> | ||
* Rob Walker <[email protected]> | ||
* Justin Wood <[email protected]> | ||
* Yakun Xu <[email protected]> |
Oops, something went wrong.