From 0c820db6f13aaef6200dac9c9b05be4a1a0d2d48 Mon Sep 17 00:00:00 2001 From: wantaek Date: Wed, 9 Sep 2026 14:54:39 +0900 Subject: [PATCH] =?UTF-8?q?ci:=20build-test=20=EC=9E=A1=EC=9D=B4=20?= =?UTF-8?q?=ED=85=8C=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=BB=B4=ED=8C=8C?= =?UTF-8?q?=EC=9D=BC=EC=A1=B0=EC=B0=A8=20=ED=95=98=EC=A7=80=20=EC=95=8A?= =?UTF-8?q?=EB=8D=98=20=EB=AC=B8=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 빌드 단계가 -Dmaven.test.skip=true 로 돌아 src/test 의 테스트 19개 클래스가 컴파일도 되지 않았다. 이 플래그는 실행뿐 아니라 테스트 컴파일까지 건너뛴다. 테스트 소스에 컴파일 오류를 넣고 같은 명령을 돌려도 'Not compiling test sources' 를 찍고 BUILD SUCCESS 가 난다. 이 줄은 저장소에 src/test 가 없던 2023-04-07 에 쓰였고, 테스트가 main 에 들어온 뒤에도 그대로 남았다. 플래그를 지우면 18개 클래스 54건이 돈다. 브라우저 창을 띄우는 EgovSampleControllerTestSelenium 은 이름이 surefire 기본 include 에 걸리지 않아 선택되지 않는다. --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b3b7a65..4407e60 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -20,6 +20,6 @@ jobs: distribution: 'temurin' cache: maven - name: Build with Maven - run: mvn -B package --file pom.xml -Dmaven.test.skip=true + run: mvn -B package --file pom.xml - name: list artifact run: ls -laR target