it-schedule #736
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
name: it-schedule | |
on: | |
schedule: | |
- cron: '10 7 * * *' | |
jobs: | |
integration-test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Cache node modules | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node-modules- | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Cache node install | |
uses: actions/cache@v4 | |
with: | |
path: 'node_install' | |
key: ${{ runner.os }}-node_install-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-node_install- | |
- name: Cleanup resources | |
run: | | |
sudo rm -rf /usr/local/lib/android | |
sudo rm -rf /usr/share/dotnet | |
df -h | |
- name: Set JAVA_HOME | |
run: | | |
echo "JAVA_8_HOME=$JAVA_HOME_8_X64" >> $GITHUB_ENV | |
echo "JAVA_11_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV | |
echo "JAVA_17_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV | |
echo "JAVA_HOME=$JAVA_HOME_8_X64" >> $GITHUB_ENV | |
- name: Java Environment | |
run: env | grep '^JAVA' | |
- name: Maven build | |
run: | | |
./mvnw --batch-mode -Pit-module -DskipTests clean install | |
- name: Integration Test | |
working-directory: ./agent-module/plugins-it | |
run: ../../mvnw --batch-mode clean install -Pit-module -Dmaven.test.failure.ignore=true | |
- name: Collect reports | |
working-directory: ./agent-module/plugins-it | |
run: | | |
mkdir -p ./temp | |
find . -regex ".*/target/failsafe-reports/TEST.*\.xml" -exec cp "{}" ./temp \; | |
ls temp | |
- name: Publish Unit Test Results | |
uses: dorny/test-reporter@v1 | |
with: | |
name: pinpoint-test-results | |
reporter: java-junit | |
path: './agent-module/plugins-it/temp/TEST-*.xml' | |
fail-on-error: 'false' |