Skip to content

Commit

Permalink
Merge pull request #1 from JNU-econovation/main
Browse files Browse the repository at this point in the history
[REMOVE] 분야별 레포지토리 분리
  • Loading branch information
bada308 authored Mar 14, 2024
2 parents ddbd621 + 95f9c92 commit 451a933
Show file tree
Hide file tree
Showing 176 changed files with 1,404 additions and 3,020 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.safetensors filter=lfs diff=lfs merge=lfs -text
56 changes: 56 additions & 0 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# github repository actions 페이지에 나타날 이름
name: Backend CI

# event trigger
# main 브랜치에 push, PR이 되었을 때 workflow 실행
on:
push:
branches: [ "main","be","be-release"]
paths : 'BE/**'
pull_request:
branches: [ "main","be","be-release"]
paths : 'BE/**'

permissions:
contents: read
checks: write
pull-requests: write

defaults:
run:
working-directory: ./BE/eeos

jobs:
build:
runs-on: ubuntu-latest
steps:

- name: JDK 17 설정
uses: actions/checkout@v3
with:
java-version: '17'
distribution: 'temurin'

- name: DB를 실행
run: |
docker-compose -f resources/local-develop-environment/docker-compose.yml up -d
sleep 20
- name: Gradle 캐싱
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Gradle로 빌드
run: ./gradlew build

- name: 테스트 결과를 PR에 코멘트로 등록
uses: EnricoMi/publish-unit-test-result-action@v1
if: contains(github.event.pull_request.head.repo.full_name, 'JNU-econovation') == false
with:
files: '**/build/test-results/test/TEST-*.xml'
26 changes: 26 additions & 0 deletions .github/workflows/eeos-android-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Android CI

on:
push:
paths:
- "AOS/**"
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x ./AOS/gradlew
- name: Build with Gradle
run: ./AOS/gradlew build
3 changes: 3 additions & 0 deletions .idea/.gitignore

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

9 changes: 9 additions & 0 deletions .idea/black-company.iml

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

8 changes: 8 additions & 0 deletions .idea/modules.xml

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

6 changes: 6 additions & 0 deletions .idea/vcs.xml

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

Empty file removed AOS/AOS.md
Empty file.
Empty file removed BE/BE.md
Empty file.
37 changes: 0 additions & 37 deletions BE/eeos/.gitignore

This file was deleted.

16 changes: 0 additions & 16 deletions BE/eeos/Dockerfile

This file was deleted.

64 changes: 0 additions & 64 deletions BE/eeos/build.gradle

This file was deleted.

35 changes: 0 additions & 35 deletions BE/eeos/docker-compose.yml

This file was deleted.

Binary file removed BE/eeos/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
7 changes: 0 additions & 7 deletions BE/eeos/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

Loading

0 comments on commit 451a933

Please sign in to comment.