docs: add note about copying output after processing #566
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
name: Main Branch Commit Action | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Building ggml examples | |
run: | | |
echo "Build ggml examples" | |
cd fundamentals/ggml | |
git submodule update --init ggml | |
make ggml-init | |
make ggml | |
make |