Skip to content

Commit

Permalink
Release version 1
Browse files Browse the repository at this point in the history
  • Loading branch information
mahozad committed Feb 29, 2024
0 parents commit f4034cc
Show file tree
Hide file tree
Showing 251 changed files with 25,333 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches:
- main

jobs:
test:
name: Test the project
runs-on: windows-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Set up a specific Java version
uses: actions/setup-java@v3
with:
distribution: "temurin" # OR adopt OR microsoft OR...
java-version: "21"
- name: Run all unit tests
run: ./gradlew test --stacktrace
- name: Upload test reports
if: always() # Run even if the previous steps failed
uses: actions/upload-artifact@v3
with:
name: tests-report
path: build/reports/tests/
18 changes: 18 additions & 0 deletions .github/workflows/update-prod-branch.yml
@@ -0,0 +1,18 @@
name: Fast-forward the prod branch if the commit has release tag

on:
push:
tags:
- v*

jobs:
merge-into-prod:
name: Rebase (fast forward) the prod branch onto the main
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
- uses: emiliopedrollo/auto-merge@v1.2.0
with:
target_branch: 'prod'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53 changes: 53 additions & 0 deletions .gitignore
@@ -0,0 +1,53 @@
asset/windows/vlc
raw/vlc*
raw/upx*

.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### IntelliJ IDEA ###
.idea/modules.xml
.idea/jarRepositories.xml
.idea/uiDesigner.xml
.idea/compiler.xml
.idea/kotlinc.xml
.idea/libraries/
.idea/misc.xml
.idea/gradle.xml
.idea/workspace.xml
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### Eclipse ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

### Mac OS ###
.DS_Store

*.log
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions .idea/icon.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions .idea/runConfigurations/Clean.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/runConfigurations/Package_Release_Exe.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions .idea/runConfigurations/Package_Release_Exe_Full_VLC.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions .idea/runConfigurations/Run_Release.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions .idea/runConfigurations/Run_Release_Distributable.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions .idea/runConfigurations/Run_Release_Full_VLC.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions .idea/runConfigurations/Tests__All_.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions .idea/runConfigurations/Tests__UI_.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f4034cc

Please sign in to comment.