-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): calculate e2e tests running time
- Loading branch information
1 parent
1778471
commit fbb6c5c
Showing
2 changed files
with
70 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 |
---|---|---|
|
@@ -276,3 +276,38 @@ jobs: | |
name: logs-${{ strategy.job-index }} | ||
path: /tmp/logs | ||
if: ${{ failure() }} | ||
|
||
calculate-running-time: | ||
name: Calculate running time | ||
needs: [django, async-migrations] | ||
runs-on: ubuntu-latest | ||
if: needs.changes.outputs.backend == 'true' | ||
steps: | ||
- name: Calculate running time | ||
run: | | ||
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token | ||
run_id=${GITHUB_RUN_ID} | ||
repo=${GITHUB_REPOSITORY} | ||
run_info=$(gh api repos/${repo}/actions/runs/${run_id}) | ||
echo run_info: ${run_info} | ||
# name is the name of the workflow file | ||
# run_started_at is the start time of the workflow | ||
# we want to get the number of seconds between the start time and now | ||
name=$(echo ${run_info} | jq -r '.name') | ||
run_url=$(echo ${run_info} | jq -r '.url') | ||
run_started_at=$(echo ${run_info} | jq -r '.run_started_at') | ||
run_attempt=$(echo ${run_info} | jq -r '.run_attempt') | ||
start_seconds=$(date -d "${run_started_at}" +%s) | ||
now_seconds=$(date +%s) | ||
duration=$((now_seconds-start_seconds)) | ||
echo running_time_duration_seconds=${duration} >> $GITHUB_ENV | ||
echo running_time_run_url=${run_url} >> $GITHUB_ENV | ||
echo running_time_run_attempt=${run_attempt} >> $GITHUB_ENV | ||
echo running_time_run_id=${run_id} >> $GITHUB_ENV | ||
echo running_time_run_started_at=${run_started_at} >> $GITHUB_ENV | ||
- name: Capture running time to PostHog | ||
uses: PostHog/[email protected] | ||
with: | ||
posthog-token: ${{secrets.POSTHOG_API_TOKEN}} | ||
event: 'posthog-ci-running-time' | ||
properties: '{"duration_seconds": ${{ env.running_time_duration_seconds }}, "run_url": "${{ env.running_time_run_url }}", "run_attempt": "${{ env.running_time_run_attempt }}", "run_id": "${{ env.running_time_run_id }}", "run_started_at": "${{ env.running_time_run_started_at }}"}' |
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 |
---|---|---|
|
@@ -276,3 +276,38 @@ jobs: | |
name: logs-${{ strategy.job-index }} | ||
path: /tmp/logs | ||
if: ${{ failure() }} | ||
|
||
calculate-running-time: | ||
name: Calculate running time | ||
needs: [django, async-migrations] | ||
runs-on: ubuntu-latest | ||
if: needs.changes.outputs.backend == 'true' | ||
steps: | ||
- name: Calculate running time | ||
run: | | ||
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token | ||
run_id=${GITHUB_RUN_ID} | ||
repo=${GITHUB_REPOSITORY} | ||
run_info=$(gh api repos/${repo}/actions/runs/${run_id}) | ||
echo run_info: ${run_info} | ||
# name is the name of the workflow file | ||
# run_started_at is the start time of the workflow | ||
# we want to get the number of seconds between the start time and now | ||
name=$(echo ${run_info} | jq -r '.name') | ||
run_url=$(echo ${run_info} | jq -r '.url') | ||
run_started_at=$(echo ${run_info} | jq -r '.run_started_at') | ||
run_attempt=$(echo ${run_info} | jq -r '.run_attempt') | ||
start_seconds=$(date -d "${run_started_at}" +%s) | ||
now_seconds=$(date +%s) | ||
duration=$((now_seconds-start_seconds)) | ||
echo running_time_duration_seconds=${duration} >> $GITHUB_ENV | ||
echo running_time_run_url=${run_url} >> $GITHUB_ENV | ||
echo running_time_run_attempt=${run_attempt} >> $GITHUB_ENV | ||
echo running_time_run_id=${run_id} >> $GITHUB_ENV | ||
echo running_time_run_started_at=${run_started_at} >> $GITHUB_ENV | ||
- name: Capture running time to PostHog | ||
uses: PostHog/[email protected] | ||
with: | ||
posthog-token: ${{secrets.POSTHOG_API_TOKEN}} | ||
event: 'posthog-ci-running-time' | ||
properties: '{"duration_seconds": ${{ env.running_time_duration_seconds }}, "run_url": "${{ env.running_time_run_url }}", "run_attempt": "${{ env.running_time_run_attempt }}", "run_id": "${{ env.running_time_run_id }}", "run_started_at": "${{ env.running_time_run_started_at }}"}' |