Skip to content

Commit

Permalink
#259 [ci] change workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KWY0218 committed May 9, 2024
1 parent f1a797c commit 5d1e6b5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,6 @@ jobs:
mysql user: 'asapuser'
mysql password: $MYSQL_ROOT_PASSWORD
mysql root password: $MYSQL_ROOT_PASSWORD

- name: Wait for MySQL
run: |
while ! mysqladmin ping --host=127.0.0.1 --password=$MYSQL_ROOT_PASSWORD --silent; do
sleep 1
done

- uses: actions/checkout@v3
- name: Set up JDK 17
Expand Down Expand Up @@ -65,6 +59,12 @@ jobs:
# 이 워크플로우는 gradle build
- name: Grant execute permission for gradlew
run: chmod +x gradlew


- name: Wait for MySQL
run: |
while ! mysqladmin ping --host=127.0.0.1 --password=$MYSQL_ROOT_PASSWORD --silent; do
sleep 1
done
- name: Build with Gradle # 실제 application build
run: ./gradlew build

0 comments on commit 5d1e6b5

Please sign in to comment.