Skip to content

Commit

Permalink
Run on large CodeBuild runners to deal with disk space issue
Browse files Browse the repository at this point in the history
  • Loading branch information
popematt committed Oct 4, 2024
1 parent d76758f commit b782cf6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 119 deletions.
86 changes: 12 additions & 74 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GitHub Action Workflow for building a new commit to the primary repo branch and publishing a new release to beta.
#
# Workflow is triggered on pushes into master.
# Workflow is triggered on pushes. Beta publish job runs conditionally if pushed to master.
#
# Additional Docs:
# - GitHub Actions: https://help.github.com/en/actions
Expand All @@ -10,90 +10,36 @@ on:
push:
paths-ignore:
- '*.md'
branches:
- master
jobs:

# Build and test plugin and provide artifact.
build:
name: Build
runs-on: ubuntu-latest
runs-on: codebuild-ion-intellij-plugin-${{ github.run_id }}-${{ github.run_attempt }}-arm-3.0-large
steps:

- run: df

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2

- name: Setup JDK
uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- run: df
- uses: gradle/actions/setup-gradle@v4

- run: df
# Build artifact using build Gradle task
- name: Build
run: ./gradlew build

# Build artifact using buildPlugin Gradle task
- name: Build Plugin
run: ./gradlew buildPlugin

- run: df
- name: Get Product Versions
id: get-products
run: |
PRODUCTS="$(./gradlew printProductsReleases -q | jq -cnR '[inputs | select(length > 0)]')"
echo "products=$PRODUCTS"
echo "products=$PRODUCTS" >> "$GITHUB_OUTPUT"
outputs:
products: ${{ steps.get-products.outputs.products }}

verify:
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
product: ${{ fromJSON(needs.build.outputs.products) }}
steps:
- run: df
- uses: actions/checkout@v4
- run: df
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- run: df

# Cache Gradle dependencies
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle', '**/*.gradle.kts') }}

# Cache Gradle Wrapper
- name: Setup Gradle Wrapper Cache
uses: actions/cache@v2
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

- run: df

# Don't set up gradle here. We've already verified the gradle wrapper in the previous job.

# Run intellij:verifyPlugin task.
- name: Verify Plugin
run: ./gradlew verifyPlugin -PverifyPlugin="${{ matrix.product }}"
run: ./gradlew verifyPlugin

publish-beta:
needs: verify
runs-on: ubuntu-latest
if: github.repository == 'amazon-ion/ion-intellij-plugin'
needs: build
if: github.repository == 'amazon-ion/ion-intellij-plugin' && github.ref == 'refs/heads/master'
runs-on: codebuild-ion-intellij-plugin-${{ github.run_id }}-${{ github.run_attempt }}-arm-3.0-large
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
Expand All @@ -107,11 +53,3 @@ jobs:
PUBLISH_TOKEN: ${{ secrets.JETBRAINS_TOKEN }}
PUBLISH_CHANNEL: beta
run: ./gradlew --stacktrace publishPlugin

# Upload plugin artifact to make it available in the next jobs
- name: Upload artifact
if: github.repository == 'amazon-ion/ion-intellij-plugin'
uses: actions/upload-artifact@v4
with:
name: plugin-artifact
path: ./build/distributions/
43 changes: 4 additions & 39 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,14 @@ jobs:
# Build and test plugin and provide artifact.
build:
name: Build
runs-on: ubuntu-latest
runs-on: codebuild-ion-intellij-plugin-${{ github.run_id }}-${{ github.run_attempt }}-arm-3.0-large
steps:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2

- name: Setup JDK
uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- uses: gradle/actions/setup-gradle@v4
with:
cache-disabled: true

# Build artifact using build Gradle task
- name: Build
Expand All @@ -41,33 +33,6 @@ jobs:
- name: Build Plugin
run: ./gradlew buildPlugin

- name: Get Product Versions
id: get-products
run: |
PRODUCTS="$(./gradlew printProductsReleases -q | jq -cnR '[inputs | select(length > 0)]')"
echo "products=$PRODUCTS"
echo "products=$PRODUCTS" >> "$GITHUB_OUTPUT"
outputs:
products: ${{ steps.get-products.outputs.products }}

verify:
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
product: ${{ fromJSON(needs.build.outputs.products) }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- uses: gradle/actions/setup-gradle@v4
with:
cache-read-only: true

# Run intellij:verifyPlugin task.
- name: Verify Plugin
run: ./gradlew verifyPlugin -PverifyPlugin="${{ matrix.product }}"
run: ./gradlew verifyPlugin
10 changes: 4 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GitHub Action Workflow for releasing a new stable version of the plugin.
#
# Workflow is triggered manually w/ proper access.
# Workflow is triggered when a new release is published.
#
# Additional Docs:
# - GitHub Actions: https://help.github.com/en/actions
Expand All @@ -16,11 +16,10 @@ env:

jobs:
release:
runs-on: ubuntu-latest
runs-on: codebuild-ion-intellij-plugin-${{ github.run_id }}-${{ github.run_attempt }}-arm-3.0-large
steps:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v2
- uses: actions/checkout@v4

# Generate resources/plugin-changenotes.html
- name: Generate Changenotes
Expand All @@ -34,8 +33,7 @@ jobs:
- name: Log Changenotes Content
run: cat resources/plugin-changenotes.html

- name: Setup JDK
uses: actions/setup-java@v3
- uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
Expand Down

0 comments on commit b782cf6

Please sign in to comment.