forked from android-graphics/sherlock-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup GitHub actions to build IntelliJ Platform.
- Loading branch information
1 parent
2e0e174
commit a2ee5e9
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Build Sherlock Platform | ||
|
||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [ idea/242.21829.142 ] | ||
pull_request: | ||
branches: [ idea/242.21829.142 ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' 1 | ||
|
||
- name: Set JAVA_HOME | ||
run: echo "JAVA_HOME=$JAVA_HOME" >> $GITHUB_ENV | ||
|
||
- name: Grant execute permission to build script | ||
run: chmod +x ./build_sherlock_platform.sh | ||
|
||
- name: Build Sherlock Platform | ||
run: ./build_sherlock_platform.sh | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: sherlock-platform | ||
path: out/sherlock-platform/artifacts/sherlock-platform-242.21829.tar.gz |