Skip to content

Commit 7a0deb6

Browse files
committed
CI 수정
1 parent 10815cd commit 7a0deb6

File tree

1 file changed

+1
-59
lines changed

1 file changed

+1
-59
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,6 @@ jobs:
6262
path: ~/.gradle/wrapper
6363
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
6464

65-
# Run verifyPlugin Gradle task
66-
- name: Verify Plugin
67-
run: ./gradlew verifyPlugin
68-
6965
# Build plugin with buildPlugin Gradle task and provide the artifact for the next workflow jobs
7066
# Requires test job to be passed
7167
build:
@@ -133,66 +129,12 @@ jobs:
133129
name: plugin-artifact
134130
path: ./build/distributions/${{ steps.properties.outputs.artifact }}
135131

136-
# Verify built plugin using IntelliJ Plugin Verifier tool
137-
# Requires build job to be passed
138-
verify:
139-
name: Verify
140-
needs: build
141-
runs-on: ubuntu-latest
142-
steps:
143-
144-
# Setup Java 1.8 environment for the next steps
145-
- name: Setup Java
146-
uses: actions/setup-java@v1
147-
with:
148-
java-version: 1.8
149-
150-
# Check out current repository
151-
- name: Fetch Sources
152-
uses: actions/checkout@v2
153-
154-
# Cache Gradle Dependencies
155-
- name: Setup Gradle Dependencies Cache
156-
uses: actions/cache@v2
157-
with:
158-
path: ~/.gradle/caches
159-
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts', 'gradle.properties') }}
160-
161-
# Cache Gradle Wrapper
162-
- name: Setup Gradle Wrapper Cache
163-
uses: actions/cache@v2
164-
with:
165-
path: ~/.gradle/wrapper
166-
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
167-
168-
# Set environment variables
169-
- name: Export Properties
170-
id: properties
171-
shell: bash
172-
run: |
173-
PROPERTIES="$(./gradlew properties --console=plain -q)"
174-
IDE_VERSIONS="$(echo "$PROPERTIES" | grep "^pluginVerifierIdeVersions:" | base64)"
175-
176-
echo "::set-output name=ideVersions::$IDE_VERSIONS"
177-
echo "::set-output name=pluginVerifierHomeDir::~/.pluginVerifier"
178-
179-
# Cache Plugin Verifier IDEs
180-
- name: Setup Plugin Verifier IDEs Cache
181-
uses: actions/cache@v2
182-
with:
183-
path: ${{ steps.properties.outputs.pluginVerifierHomeDir }}/ides
184-
key: ${{ runner.os }}-plugin-verifier-${{ steps.properties.outputs.ideVersions }}
185-
186-
# Run IntelliJ Plugin Verifier action using GitHub Action
187-
- name: Verify Plugin
188-
run: ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=${{ steps.properties.outputs.pluginVerifierHomeDir }}
189-
190132
# Prepare a draft release for GitHub Releases page for the manual verification
191133
# If accepted and published, release workflow would be triggered
192134
releaseDraft:
193135
name: Release Draft
194136
if: github.event_name != 'pull_request'
195-
needs: [build, verify]
137+
needs: [build]
196138
runs-on: ubuntu-latest
197139
steps:
198140

0 commit comments

Comments
 (0)