Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(CI): Make query.log paths relative so they work on GitHub and Gar…
…n runners

Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Jun 21, 2023
commit 476e09a6b982ef462dfa07f5c591cfcae92f3359
10 changes: 5 additions & 5 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
mkdir data
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
./occ app:enable --force ${{ env.APP_NAME }}
./occ config:system:set query_log_file --value '/home/runner/work/notifications/notifications/query.log'
./occ config:system:set query_log_file --value "$PWD/query.log"

# - name: Check PHPUnit script is defined
# id: check_phpunit
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
run: composer run test:integration

- name: Print query.log
run: cat /home/runner/work/notifications/notifications/query.log
run: cat query.log

- name: Query count
uses: actions/github-script@v5
Expand All @@ -129,12 +129,12 @@ jobs:
myError += data.toString()
}
}
await exec.exec(`/bin/bash -c "cat /home/runner/work/notifications/notifications/query.log | wc -l"`, [], options)
await exec.exec(`/bin/bash -c "cat query.log | wc -l"`, [], options)
msg = myOutput
const queryCount = parseInt(myOutput, 10)

myOutput = ''
await exec.exec('cat', ['/home/runner/work/notifications/notifications/apps/notifications/tests/Integration/base-query-count.txt'], options)
await exec.exec('cat', ['apps/notifications/tests/Integration/base-query-count.txt'], options)
const baseCount = parseInt(myOutput, 10)

const absoluteIncrease = queryCount - baseCount
Expand All @@ -150,7 +150,7 @@ jobs:
})
}
if (queryCount < 100) {
const comment = `🐈 Performance messuring seems broken. Failed to get query count.`
const comment = `🐈 Performance measuring seems broken. Failed to get query count.`
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand Down