Skip to content

Commit

Permalink
Initial prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Jun 11, 2024
0 parents commit 42bf2cc
Show file tree
Hide file tree
Showing 68 changed files with 9,719 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
open_collective: roc-streaming
liberapay: roc-streaming
51 changes: 51 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: build

on:
pull_request:
branches:
- main
- v*

push:
branches:
- main
- v*
tags:
- v*

repository_dispatch:
workflow_dispatch:

schedule:
- cron: '0 0 * * 1'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
linux:
runs-on: ubuntu-latest

strategy:
matrix:
include:
- name: Linux - Go 1.22
go: '1.22'

- name: Linux - Go 1.x
go: '1.x'

name: ${{ matrix.name }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Build
run: |
make
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# build
/rocd
/docs/html

# personal
/TODO.org
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions HACKING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Hacking guide

*TBD*
Loading

0 comments on commit 42bf2cc

Please sign in to comment.