-
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.
Removes lara-js workflow, adds main and staging
- Loading branch information
Showing
2 changed files
with
81 additions
and
4 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
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,77 @@ | ||
# This workflow will build a Java project with Ant | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant | ||
|
||
name: Java CI - Staging | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# Daily at midnight | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
permissions: | ||
checks: write | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
# Because of scheduled runs, by default run on default branch | ||
with: | ||
ref: main | ||
path: workspace/clava-benchmarks-tests | ||
|
||
- name: Check out clava-benchmarks repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: specs-feup/clava-benchmarks | ||
path: workspace/clava-benchmarks | ||
ref: main | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Check out specs-java-libs repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: specs-feup/specs-java-libs | ||
path: workspace/specs-java-libs | ||
|
||
- name: Check out lara-framework repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: specs-feup/lara-framework | ||
ref: staging | ||
path: workspace/lara-framework | ||
|
||
- name: Check out Clava repo | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: specs-feup/clava | ||
ref: staging | ||
path: workspace/clava | ||
|
||
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies. | ||
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md | ||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 | ||
|
||
# Setting up gradle multi-project would be helpful | ||
- name: InstallDist Clava | ||
working-directory: workspace/clava/ClavaWeaver | ||
run: gradle installDist | ||
|
||
- name: Execute 'all-benches.clava' | ||
working-directory: workspace/clava-benchmarks-tests | ||
run: | | ||
../clava/ClavaWeaver/build/install/ClavaWeaver/bin/ClavaWeaver --config ./all-benches/all-benches.clava |