Skip to content

Commit

Permalink
doc/mnt: update README with proper cloning instructions + banner (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
PABannier committed Oct 29, 2023
1 parent aab010f commit 1ce7c88
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 23 deletions.
Binary file added .github/workflows/banner.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 7 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: build

on:
workflow_dispatch: # allows manual triggering
inputs:
create_release:
description: 'Create new release'
required: true
type: boolean
push:
branches:
- main
Expand All @@ -28,7 +22,9 @@ jobs:
steps:
- name: Clone
id: checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

- name: Dependencies
id: depends
Expand All @@ -44,19 +40,15 @@ jobs:
cmake ..
cmake --build . --config Release
- name: Test
id: cmake_test
run: |
cd build
ctest --verbose --timeout 900
macOS-latest-cmake:
runs-on: macos-latest

steps:
- name: Clone
id: checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
with:
submodules: true

- name: Dependencies
id: depends
Expand All @@ -70,11 +62,5 @@ jobs:
sysctl -a
mkdir build
cd build
cmake -DBARK_AVX2=OFF -DBARK_FMA=OFF ..
cmake ..
cmake --build . --config Release
- name: Test
id: cmake_test
run: |
cd build
ctest --verbose --timeout 900
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bark.cpp

![bark.cpp](./assets/banner.jpeg)
![bark.cpp](./assets/banner.png)

[![Actions Status](https://github.com/PABannier/bark.cpp/actions/workflows/build.yml/badge.svg)](https://github.com/PABannier/bark.cpp/actions)
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
Expand Down Expand Up @@ -156,7 +156,7 @@ Here are the steps for the bark model.
### Get the code

```bash
git clone https://github.com/PABannier/bark.cpp.git
git clone --recursive https://github.com/PABannier/bark.cpp.git
cd bark.cpp
```

Expand Down
Binary file removed assets/banner.jpeg
Binary file not shown.
Binary file added assets/banner.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1ce7c88

Please sign in to comment.