Skip to content

Commit 1fc78f0

Browse files
committed
Merge branch 'billard-table-detection' of https://github.com/shanji97/Augmented-Reality-Pool-Training-System into billard-table-detection
2 parents 754309c + 1fd51a3 commit 1fc78f0

File tree

108 files changed

+9271
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+9271
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
2+
# name: Developer CI/CD for testing purposes
3+
4+
# on:
5+
# push:
6+
# branches-ignore:
7+
# - main
8+
# jobs:
9+
# build:
10+
# name: Build AR_Pool_Application
11+
# runs-on: ubuntu-latest
12+
# steps:
13+
# # Checkout
14+
# - name: Checkout repository
15+
# uses: actions/checkout@v4
16+
# with:
17+
# lfs: true
18+
19+
# # Create Library and Build folder automatically, since they are excluded in the .gitignore
20+
# - name: Create Library folder
21+
# run: mkdir -p UnityProject/AR_Pool/Library
22+
23+
# # Build folder
24+
# - name: Create Build folder
25+
# run: mkdir -p UnityProject/AR_Pool/Build
26+
27+
# # Cache
28+
# - uses: actions/cache@v3
29+
# with:
30+
# path: UnityProject/AR_Pool/Library
31+
# key: Library-${{ hashFiles('UnityProject/AR_Pool/Assets/**', 'UnityProject/AR_Pool/Packages/**', 'UnityProject/AR_Pool/ProjectSettings/**') }}
32+
# restore-keys: |
33+
# Library-
34+
35+
# # Build
36+
# - name: Build project
37+
# uses: game-ci/unity-builder@v4
38+
# env:
39+
# UNITY_LICENSE: ${{secrets.UNITY_LICENSE}}
40+
# UNITY_EMAIL: ${{secrets.UNITY_EMAIL}}
41+
# UNITY_PASSWORD: ${{secrets.UNITY_PASSWORD}}
42+
# with:
43+
# projectPath: UnityProject/AR_Pool
44+
# targetPlatform: Android
45+
46+
# # Remove Unnecessary Video Files
47+
# - name: Remove Unnecessary Video Files
48+
# run: find UnityProject/AR_Pool/Library/PackageCache -type f -name "*.mp4" -delete || true
49+
50+
# # Output
51+
# - uses: actions/upload-artifact@v4
52+
# with :
53+
# name: Build
54+
# path: UnityProject/AR_Pool/Build
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.mp4 filter=lfs diff=lfs merge=lfs -text
2+
*.png filter=lfs diff=lfs merge=lfs -text
3+
*.jpg filter=lfs diff=lfs merge=lfs -text
4+
*.pdf filter=lfs diff=lfs merge=lfs -text

0 commit comments

Comments
 (0)