Skip to content

Commit

Permalink
Social features (#131)
Browse files Browse the repository at this point in the history
support social service and matrix
  • Loading branch information
robtfm authored Oct 14, 2024
1 parent 5a8a4d4 commit 0d9e648
Show file tree
Hide file tree
Showing 59 changed files with 16,218 additions and 442 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [bigwin, ubuntu-latest, macos-latest]
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,14 @@ jobs:
strategy:
matrix:
include:
# linux livekit disabled until i figure out the multiple symbol definitions issue (webrtc and v8 both use abseil)
- build_name: linux-x86_64
os: ubuntu-latest

- build_name: macos-m1m2
os: macos-14-xlarge

# some ffmpeg thing is failing
# - build_name: macos-x86_64
# os: macos-14-large

- build_name: windows-x86_64
os: bigwin
# target: x86_64-pc-windows-msvc
os: windows-latest

env:
PACKAGE_FILE: ${{ needs.create-release.outputs.package_prefix }}-${{ matrix.build_name }}.${{ startsWith(matrix.build_name, 'lin') && 'tar.gz' || 'zip' }}
Expand All @@ -72,7 +66,6 @@ jobs:
profile: minimal
toolchain: stable
override: true
# - uses: Swatinem/rust-cache@v2
- name: add darwin target
if: runner.os == 'macos'
run: rustup target add aarch64-apple-darwin
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/target
Cargo.lock
/assets/cache
/assets/video_downloads
/assets/scene_dump
Expand Down
22 changes: 20 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,25 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'social'",
"cargo": {
"args": [
"build",
"--bin=social",
"--package=social"
],
"filter": {
"name": "social",
"kind": "bin"
}
},
"args": ["step-4"],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
Expand Down Expand Up @@ -42,4 +60,4 @@
"cwd": "${workspaceFolder}"
}
]
}
}
Loading

0 comments on commit 0d9e648

Please sign in to comment.