Skip to content

Commit

Permalink
feat: 0.1.0 First release
Browse files Browse the repository at this point in the history
  • Loading branch information
jgabaut committed Aug 7, 2023
0 parents commit a8807f2
Show file tree
Hide file tree
Showing 20 changed files with 3,918 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build CI with make

on:
push:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Run aclocal
run: aclocal
- name: Run autoconf
run: autoconf
- name: Run automake --add-missing
run: automake --add-missing
- name: Run ./configure
run: ./configure
- name: Run make
run: make
- name: Run ./demo
run: ./demo
30 changes: 30 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ignore object files
*.o
# also explicitly ignore our executable for good measure
demo
# also explicitly ignore our debug executable for good measure
demo_debug

#We also want to ignore the dotfile dump if we ever use anvil with -c flag
amboso_cfg.dot

#Ignore docs pdf
docs/docs.pdf

#Ignore doxygen dir
doxygen/

# ignore files generated by Autotools
autom4te.cache/
compile
config.guess
config.log
config.status
config.sub
configure
install-sh
missing
aclocal.m4
configure~
Makefile
Makefile.in
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "amboso"]
path = amboso
url = [email protected]:jgabaut/amboso.git
59 changes: 59 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @jgabaut

# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
# modifies JS files, only @js-owner and not the global
# owner(s) will be requested for a review.
#*.js @js-owner #This is an inline comment.

# You can also use email addresses if you prefer. They'll be
# used to look up users just like we do for commit author
# emails.
#*.go [email protected]

# Teams can be specified as code owners as well. Teams should
# be identified in the format @org/team-name. Teams must have
# explicit write access to the repository. In this example,
# the octocats team in the octo-org organization owns all .txt files.
#*.txt @octo-org/octocats

# In this example, @doctocat owns any files in the build/logs
# directory at the root of the repository and any of its
# subdirectories.
#/build/logs/ @doctocat

# The `docs/*` pattern will match files like
# `docs/getting-started.md` but not further nested files like
# `docs/build-app/troubleshooting.md`.
#docs/* [email protected]

# In this example, @octocat owns any file in an apps directory
# anywhere in your repository.
#apps/ @octocat

# In this example, @doctocat owns any file in the `/docs`
# directory in the root of your repository and any of its
# subdirectories.
#/docs/ @doctocat

# In this example, any change inside the `/scripts` directory
# will require approval from @doctocat or @octocat.
#/scripts/ @doctocat @octocat

# In this example, @octocat owns any file in a `/logs` directory such as
# `/build/logs`, `/scripts/logs`, and `/deeply/nested/logs`. Any changes
# in a `/logs` directory will require approval from @octocat.
#**/logs @octocat

# In this example, @octocat owns any file in the `/apps`
# directory in the root of your repository except for the `/apps/github`
# subdirectory, as its owners are left empty.
#/apps/ @octocat
#/apps/github
Loading

0 comments on commit a8807f2

Please sign in to comment.