| 
									
										
										
										
											2023-07-03 23:27:06 +10:00
										 |  |  | #!/usr/bin/env bash
 | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | set -e | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [[ ($1 == '--help') || ($1 == '-h') ]]; then | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  |   echo "usage: $(basename $0) {--stable,--beta,--canary}" | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  |   echo | 
					
						
							|  |  |  |   echo "Build the Trace Viewer and push it to the GitHub repository." | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   echo "NOTE: the following env variables are required:" | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  |   echo "  GH_SERVICE_ACCOUNT_TOKEN     GitHub token with access to the microsoft/trace.playwright.dev repository" | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  |   echo "  GITHUB_SHA                   GitHub commit SHA - injected via GitHub Actions" | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   echo "This script is designed to get executed via GitHub Actions" | 
					
						
							|  |  |  |   exit 0 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [[ -z "${GH_SERVICE_ACCOUNT_TOKEN}" ]]; then | 
					
						
							|  |  |  |   echo "NOTE: GH_SERVICE_ACCOUNT_TOKEN environment variable is required" | 
					
						
							|  |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  | RELEASE_CHANNEL="$1" | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # 1. Install dependencies and build the Trace Viewer | 
					
						
							|  |  |  | npm ci | 
					
						
							|  |  |  | npm run build | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # 2. Configure Git and clone the Trace Viewer repository | 
					
						
							|  |  |  | git config --global user.name github-actions | 
					
						
							|  |  |  | git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  | git clone "https://${GH_SERVICE_ACCOUNT_TOKEN}@github.com/microsoft/trace.playwright.dev.git" trace.playwright.dev | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # 3. Copy the built Trace Viewer to the repository | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  | if [[ "${RELEASE_CHANNEL}" == "--stable" ]]; then | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  |   rm -rf trace.playwright.dev/docs/ | 
					
						
							|  |  |  |   mkdir trace.playwright.dev/docs/ | 
					
						
							| 
									
										
										
										
											2023-08-19 16:16:44 -07:00
										 |  |  |   cp -r packages/playwright-core/lib/vite/traceViewer/* trace.playwright.dev/docs/ | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Restore CNAME, beta/ & next/ branches. | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  |   cd trace.playwright.dev/ | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  |   git checkout docs/beta | 
					
						
							|  |  |  |   git checkout docs/next | 
					
						
							|  |  |  |   git checkout docs/CNAME | 
					
						
							|  |  |  |   cd - | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   echo "Updated stable version" | 
					
						
							|  |  |  | elif [[ "${RELEASE_CHANNEL}" == "--canary" ]]; then | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  |   rm -rf trace.playwright.dev/docs/next/ | 
					
						
							| 
									
										
										
										
											2023-08-19 16:16:44 -07:00
										 |  |  |   cp -r packages/playwright-core/lib/vite/traceViewer/ trace.playwright.dev/docs/next/ | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  |   echo "Updated canary version" | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  | elif [[ "${RELEASE_CHANNEL}" == "--beta" ]]; then | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  |   rm -rf trace.playwright.dev/docs/beta/ | 
					
						
							| 
									
										
										
										
											2023-08-19 16:16:44 -07:00
										 |  |  |   cp -r packages/playwright-core/lib/vite/traceViewer/ trace.playwright.dev/docs/beta/ | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  |   echo "Updated beta version" | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  | else | 
					
						
							| 
									
										
										
										
											2021-11-09 17:21:51 -08:00
										 |  |  |   echo "ERROR: unknown environment - ${RELEASE_CHANNEL}" | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  |   exit 1 | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # 4. Commit and push the changes | 
					
						
							| 
									
										
										
										
											2021-11-22 10:41:22 -08:00
										 |  |  | cd trace.playwright.dev/ | 
					
						
							| 
									
										
										
										
											2021-11-09 00:27:54 +01:00
										 |  |  | git add . | 
					
						
							|  |  |  | if [[ "$(git status --porcelain)" == "" ]]; then | 
					
						
							|  |  |  |     echo "there are no changes"; | 
					
						
							|  |  |  |     exit 0; | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | git commit -m "Update Trace Viewer
 | 
					
						
							|  |  |  | Upstream commit: https://github.com/microsoft/playwright/commit/$GITHUB_SHA"
 | 
					
						
							|  |  |  | git push origin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo "Pushed changes successfully!" |