|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
name: Playwright Tests
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
branches: [ main ]
|
|
|
|
|
branches: [ main, ryanrosello-og/troubleshoot-turn-on-macos ]
|
|
|
|
|
pull_request:
|
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
|
@ -38,9 +38,10 @@ jobs:
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
shardIndex: [1, 2, 3, 4]
|
|
|
|
|
shardTotal: [4]
|
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
|
shardIndex: [1]
|
|
|
|
|
shardTotal: [1]
|
|
|
|
|
os: [macos-14]
|
|
|
|
|
# os: [ubuntu-latest, windows-latest, macos-14]
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
needs: check-rust-changes
|
|
|
|
|
steps:
|
|
|
|
@ -55,15 +56,19 @@ jobs:
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn
|
|
|
|
|
- name: Cache Playwright Browsers
|
|
|
|
|
uses: actions/cache@v4
|
|
|
|
|
with:
|
|
|
|
|
path: |
|
|
|
|
|
~/.cache/ms-playwright/
|
|
|
|
|
key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
|
|
|
|
|
# - name: Cache Playwright Browsers
|
|
|
|
|
# uses: actions/cache@v4
|
|
|
|
|
# with:
|
|
|
|
|
# path: |
|
|
|
|
|
# ~/.cache/ms-playwright/
|
|
|
|
|
# key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
|
|
|
|
|
- name: Install Playwright Browsers
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn playwright install --with-deps
|
|
|
|
|
# - name: install chrome from the cask macos
|
|
|
|
|
# if: ${{ startsWith(matrix.os, 'macos') }}
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# brew install --cask google-chrome
|
|
|
|
|
- name: Download Wasm Cache
|
|
|
|
|
id: download-wasm
|
|
|
|
|
if: needs.check-rust-changes.outputs.rust-changed == 'false'
|
|
|
|
@ -92,28 +97,28 @@ jobs:
|
|
|
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
|
with:
|
|
|
|
|
workspaces: './src/wasm-lib'
|
|
|
|
|
- name: install good sed
|
|
|
|
|
if: ${{ startsWith(matrix.os, 'macos') }}
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
brew install gnu-sed
|
|
|
|
|
echo "/opt/homebrew/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
|
|
|
- name: Install vector
|
|
|
|
|
shell: bash
|
|
|
|
|
if: ${{ !startsWith(matrix.os, 'windows') }}
|
|
|
|
|
run: |
|
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSfL https://sh.vector.dev > /tmp/vector.sh
|
|
|
|
|
chmod +x /tmp/vector.sh
|
|
|
|
|
/tmp/vector.sh -y -no-modify-path
|
|
|
|
|
mkdir -p /tmp/vector
|
|
|
|
|
cp .github/workflows/vector.toml /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_WORKFLOW#${GITHUB_WORKFLOW}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_REPOSITORY#${GITHUB_REPOSITORY}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_SHA#${GITHUB_SHA}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_REF_NAME#${GITHUB_REF_NAME}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GH_ACTIONS_AXIOM_TOKEN#${{secrets.GH_ACTIONS_AXIOM_TOKEN}}#g" /tmp/vector.toml
|
|
|
|
|
cat /tmp/vector.toml
|
|
|
|
|
${HOME}/.vector/bin/vector --config /tmp/vector.toml &
|
|
|
|
|
# - name: install good sed
|
|
|
|
|
# if: ${{ startsWith(matrix.os, 'macos') }}
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# brew install gnu-sed
|
|
|
|
|
# echo "/opt/homebrew/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
|
|
|
# - name: Install vector
|
|
|
|
|
# shell: bash
|
|
|
|
|
# if: ${{ !startsWith(matrix.os, 'windows') }}
|
|
|
|
|
# run: |
|
|
|
|
|
# curl --proto '=https' --tlsv1.2 -sSfL https://sh.vector.dev > /tmp/vector.sh
|
|
|
|
|
# chmod +x /tmp/vector.sh
|
|
|
|
|
# /tmp/vector.sh -y -no-modify-path
|
|
|
|
|
# mkdir -p /tmp/vector
|
|
|
|
|
# cp .github/workflows/vector.toml /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_WORKFLOW#${GITHUB_WORKFLOW}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_REPOSITORY#${GITHUB_REPOSITORY}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_SHA#${GITHUB_SHA}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_REF_NAME#${GITHUB_REF_NAME}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GH_ACTIONS_AXIOM_TOKEN#${{secrets.GH_ACTIONS_AXIOM_TOKEN}}#g" /tmp/vector.toml
|
|
|
|
|
# cat /tmp/vector.toml
|
|
|
|
|
# ${HOME}/.vector/bin/vector --config /tmp/vector.toml &
|
|
|
|
|
- name: Build Wasm (because rust diff)
|
|
|
|
|
if: needs.check-rust-changes.outputs.rust-changed == 'true'
|
|
|
|
|
shell: bash
|
|
|
|
@ -125,111 +130,112 @@ jobs:
|
|
|
|
|
- name: build web
|
|
|
|
|
run: yarn build:local
|
|
|
|
|
shell: bash
|
|
|
|
|
- name: Run ubuntu/chrome snapshots
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --retries="3" --update-snapshots --grep=@snapshot --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
|
|
|
|
|
env:
|
|
|
|
|
CI: true
|
|
|
|
|
NODE_ENV: development
|
|
|
|
|
VITE_KC_DEV_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
|
|
|
|
|
VITE_KC_SKIP_AUTH: true
|
|
|
|
|
token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
|
|
|
|
|
snapshottoken: ${{ secrets.KITTYCAD_API_TOKEN }}
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
with:
|
|
|
|
|
name: playwright-report-ubuntu-snapshot-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
path: playwright-report/
|
|
|
|
|
retention-days: 30
|
|
|
|
|
overwrite: true
|
|
|
|
|
- name: Clean up test-results
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
run: rm -r test-results
|
|
|
|
|
- name: check for changes
|
|
|
|
|
shell: bash
|
|
|
|
|
id: git-check
|
|
|
|
|
run: |
|
|
|
|
|
git add .
|
|
|
|
|
if git status | grep -q "Changes to be committed"
|
|
|
|
|
then echo "modified=true" >> $GITHUB_OUTPUT
|
|
|
|
|
else echo "modified=false" >> $GITHUB_OUTPUT
|
|
|
|
|
fi
|
|
|
|
|
- name: Commit changes, if any
|
|
|
|
|
if: steps.git-check.outputs.modified == 'true'
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
git add .
|
|
|
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
|
|
|
git config --local user.name "github-actions[bot]"
|
|
|
|
|
git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
|
|
|
|
|
git fetch origin
|
|
|
|
|
echo ${{ github.head_ref }}
|
|
|
|
|
git checkout ${{ github.head_ref }}
|
|
|
|
|
git commit -am "A snapshot a day keeps the bugs away! 📷🐛 (OS: ${{matrix.os}})" || true
|
|
|
|
|
git push
|
|
|
|
|
git push origin ${{ github.head_ref }}
|
|
|
|
|
# only upload artifacts if there's actually changes
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
if: steps.git-check.outputs.modified == 'true'
|
|
|
|
|
with:
|
|
|
|
|
name: playwright-report-ubuntu-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
path: playwright-report/
|
|
|
|
|
retention-days: 30
|
|
|
|
|
- uses: actions/download-artifact@v4
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
with:
|
|
|
|
|
name: test-results-ubuntu-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
path: test-results/
|
|
|
|
|
# - name: Run playwright/chrome snapshots
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --retries="3" --update-snapshots --grep=@snapshot --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }}
|
|
|
|
|
# env:
|
|
|
|
|
# CI: true
|
|
|
|
|
# NODE_ENV: development
|
|
|
|
|
# VITE_KC_DEV_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
|
|
|
|
|
# VITE_KC_SKIP_AUTH: true
|
|
|
|
|
# token: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
|
|
|
|
|
# snapshottoken: ${{ secrets.KITTYCAD_API_TOKEN }}
|
|
|
|
|
# - uses: actions/upload-artifact@v4
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# with:
|
|
|
|
|
# name: playwright-report-${{matrix.os}}-snapshot-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
# path: playwright-report/
|
|
|
|
|
# retention-days: 30
|
|
|
|
|
# overwrite: true
|
|
|
|
|
# - name: Clean up test-results
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# continue-on-error: true
|
|
|
|
|
# run: rm -r test-results
|
|
|
|
|
# - name: check for changes
|
|
|
|
|
# shell: bash
|
|
|
|
|
# id: git-check
|
|
|
|
|
# run: |
|
|
|
|
|
# git add .
|
|
|
|
|
# if git status | grep -q "Changes to be committed"
|
|
|
|
|
# then echo "modified=true" >> $GITHUB_OUTPUT
|
|
|
|
|
# else echo "modified=false" >> $GITHUB_OUTPUT
|
|
|
|
|
# fi
|
|
|
|
|
# - name: Commit changes, if any
|
|
|
|
|
# if: steps.git-check.outputs.modified == 'true'
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# git add .
|
|
|
|
|
# git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
|
|
|
# git config --local user.name "github-actions[bot]"
|
|
|
|
|
# git remote set-url origin https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
|
|
|
|
|
# git fetch origin
|
|
|
|
|
# echo ${{ github.head_ref }}
|
|
|
|
|
# git checkout ${{ github.head_ref }}
|
|
|
|
|
# git commit -am "A snapshot a day keeps the bugs away! 📷🐛 (OS: ${{matrix.os}})" || true
|
|
|
|
|
# git push
|
|
|
|
|
# git push origin ${{ github.head_ref }}
|
|
|
|
|
# # only upload artifacts if there's actually changes
|
|
|
|
|
# - uses: actions/upload-artifact@v4
|
|
|
|
|
# if: steps.git-check.outputs.modified == 'true'
|
|
|
|
|
# with:
|
|
|
|
|
# name: playwright-report-${{matrix.os}}-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
# path: playwright-report/
|
|
|
|
|
# retention-days: 30
|
|
|
|
|
# - uses: actions/download-artifact@v4
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# continue-on-error: true
|
|
|
|
|
# with:
|
|
|
|
|
# name: test-results-${{matrix.os}}-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
# path: test-results/
|
|
|
|
|
- name: Run playwright/chrome flow (with retries)
|
|
|
|
|
id: retry
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
if [[ ! -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# if no last run artifact, than run plawright normally
|
|
|
|
|
echo "run playwright normally"
|
|
|
|
|
yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --grep-invert="@snapshot|@electron" || true
|
|
|
|
|
yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --grep="@focus" --grep-invert="@snapshot|@electron" || true
|
|
|
|
|
# if [[ ! -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# # if no last run artifact, than run plawright normally
|
|
|
|
|
# echo "run playwright normally"
|
|
|
|
|
# yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --grep-invert="@snapshot|@electron" || true
|
|
|
|
|
# # # send to axiom
|
|
|
|
|
# node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
# fi
|
|
|
|
|
|
|
|
|
|
# retry=1
|
|
|
|
|
# max_retrys=4
|
|
|
|
|
|
|
|
|
|
# # retry failed tests, doing our own retries because using inbuilt playwright retries causes connection issues
|
|
|
|
|
# while [[ $retry -le $max_retrys ]]; do
|
|
|
|
|
# if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
# if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
# echo "retried=true" >>$GITHUB_OUTPUT
|
|
|
|
|
# echo "run playwright with last failed tests and retry $retry"
|
|
|
|
|
# yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --last-failed --grep-invert="@snapshot|@electron" || true
|
|
|
|
|
# # send to axiom
|
|
|
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
fi
|
|
|
|
|
# node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
# retry=$((retry + 1))
|
|
|
|
|
# else
|
|
|
|
|
# echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
# exit 0
|
|
|
|
|
# fi
|
|
|
|
|
# else
|
|
|
|
|
# echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
# exit 0
|
|
|
|
|
# fi
|
|
|
|
|
# done
|
|
|
|
|
|
|
|
|
|
retry=1
|
|
|
|
|
max_retrys=4
|
|
|
|
|
# echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
|
|
|
|
|
# retry failed tests, doing our own retries because using inbuilt playwright retries causes connection issues
|
|
|
|
|
while [[ $retry -le $max_retrys ]]; do
|
|
|
|
|
if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
echo "retried=true" >>$GITHUB_OUTPUT
|
|
|
|
|
echo "run playwright with last failed tests and retry $retry"
|
|
|
|
|
yarn playwright test --project="Google Chrome" --config=playwright.ci.config.ts --last-failed --grep-invert="@snapshot|@electron" || true
|
|
|
|
|
# send to axiom
|
|
|
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
retry=$((retry + 1))
|
|
|
|
|
else
|
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
|
|
|
|
|
if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
# if it still fails after 3 retrys, then fail the job
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
exit 0
|
|
|
|
|
# if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
# if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
# # if it still fails after 3 retrys, then fail the job
|
|
|
|
|
# exit 1
|
|
|
|
|
# fi
|
|
|
|
|
# fi
|
|
|
|
|
# exit 0
|
|
|
|
|
env:
|
|
|
|
|
CI: true
|
|
|
|
|
NODE_ENV: development
|
|
|
|
@ -244,193 +250,193 @@ jobs:
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
if: always()
|
|
|
|
|
with:
|
|
|
|
|
name: test-results-ubuntu-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
name: test-results-${{matrix.os}}-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
path: test-results/
|
|
|
|
|
retention-days: 30
|
|
|
|
|
overwrite: true
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
if: always()
|
|
|
|
|
with:
|
|
|
|
|
name: playwright-report-ubuntu-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
name: playwright-report-${{matrix.os}}-${{ matrix.shardIndex }}-${{ github.sha }}
|
|
|
|
|
path: playwright-report/
|
|
|
|
|
retention-days: 30
|
|
|
|
|
overwrite: true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
playwright-electron:
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-14]
|
|
|
|
|
timeout-minutes: 30
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
needs: check-rust-changes
|
|
|
|
|
steps:
|
|
|
|
|
- name: Tune GitHub-hosted runner network
|
|
|
|
|
uses: smorimoto/tune-github-hosted-runner-network@v1
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- uses: actions/setup-node@v4
|
|
|
|
|
with:
|
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
|
cache: 'yarn'
|
|
|
|
|
- uses: KittyCAD/action-install-cli@main
|
|
|
|
|
- name: Install dependencies
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn
|
|
|
|
|
- name: Cache Playwright Browsers
|
|
|
|
|
uses: actions/cache@v4
|
|
|
|
|
with:
|
|
|
|
|
path: |
|
|
|
|
|
~/.cache/ms-playwright/
|
|
|
|
|
key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
|
|
|
|
|
- name: Install Playwright Browsers
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn playwright install chromium --with-deps
|
|
|
|
|
- name: Download Wasm Cache
|
|
|
|
|
id: download-wasm
|
|
|
|
|
if: needs.check-rust-changes.outputs.rust-changed == 'false'
|
|
|
|
|
uses: dawidd6/action-download-artifact@v6
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
with:
|
|
|
|
|
github_token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
|
name: wasm-bundle
|
|
|
|
|
workflow: build-and-store-wasm.yml
|
|
|
|
|
branch: main
|
|
|
|
|
path: src/wasm-lib/pkg
|
|
|
|
|
- name: copy wasm blob
|
|
|
|
|
if: needs.check-rust-changes.outputs.rust-changed == 'false'
|
|
|
|
|
shell: bash
|
|
|
|
|
run: cp src/wasm-lib/pkg/wasm_lib_bg.wasm public
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
- name: Setup Rust
|
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
|
- name: Cache Wasm (because rust diff)
|
|
|
|
|
if: needs.check-rust-changes.outputs.rust-changed == 'true'
|
|
|
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
|
with:
|
|
|
|
|
workspaces: './src/wasm-lib'
|
|
|
|
|
- name: OR Cache Wasm (because wasm cache failed)
|
|
|
|
|
if: steps.download-wasm.outcome == 'failure'
|
|
|
|
|
uses: Swatinem/rust-cache@v2
|
|
|
|
|
with:
|
|
|
|
|
workspaces: './src/wasm-lib'
|
|
|
|
|
- name: install good sed
|
|
|
|
|
if: ${{ startsWith(matrix.os, 'macos') }}
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
brew install gnu-sed
|
|
|
|
|
echo "/opt/homebrew/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
|
|
|
- name: Install vector
|
|
|
|
|
if: ${{ !startsWith(matrix.os, 'windows') }}
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
curl --proto '=https' --tlsv1.2 -sSfL https://sh.vector.dev > /tmp/vector.sh
|
|
|
|
|
chmod +x /tmp/vector.sh
|
|
|
|
|
/tmp/vector.sh -y -no-modify-path
|
|
|
|
|
mkdir -p /tmp/vector
|
|
|
|
|
cp .github/workflows/vector.toml /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_WORKFLOW#${GITHUB_WORKFLOW}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_REPOSITORY#${GITHUB_REPOSITORY}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_SHA#${GITHUB_SHA}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GITHUB_REF_NAME#${GITHUB_REF_NAME}#g" /tmp/vector.toml
|
|
|
|
|
sed -i "s#GH_ACTIONS_AXIOM_TOKEN#${{secrets.GH_ACTIONS_AXIOM_TOKEN}}#g" /tmp/vector.toml
|
|
|
|
|
cat /tmp/vector.toml
|
|
|
|
|
${HOME}/.vector/bin/vector --config /tmp/vector.toml &
|
|
|
|
|
- name: Build Wasm (because rust diff)
|
|
|
|
|
if: needs.check-rust-changes.outputs.rust-changed == 'true'
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn build:wasm
|
|
|
|
|
- name: OR Build Wasm (because wasm cache failed)
|
|
|
|
|
if: steps.download-wasm.outcome == 'failure'
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn build:wasm
|
|
|
|
|
- name: build electron
|
|
|
|
|
shell: bash
|
|
|
|
|
run: yarn electron:package
|
|
|
|
|
- uses: actions/download-artifact@v4
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
continue-on-error: true
|
|
|
|
|
with:
|
|
|
|
|
name: test-results-ubuntu-${{ github.sha }}
|
|
|
|
|
path: test-results/
|
|
|
|
|
- name: Run electron tests (with retries)
|
|
|
|
|
id: retry
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
if [[ ! -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# if no last run artifact, than run plawright normally
|
|
|
|
|
echo "run playwright normally"
|
|
|
|
|
if [[ "$IS_UBUNTU" == "true" ]]; then
|
|
|
|
|
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
else
|
|
|
|
|
yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
fi
|
|
|
|
|
# playwright-electron:
|
|
|
|
|
# strategy:
|
|
|
|
|
# fail-fast: false
|
|
|
|
|
# matrix:
|
|
|
|
|
# os: [ubuntu-latest, windows-latest, macos-14]
|
|
|
|
|
# timeout-minutes: 30
|
|
|
|
|
# runs-on: ${{ matrix.os }}
|
|
|
|
|
# needs: check-rust-changes
|
|
|
|
|
# steps:
|
|
|
|
|
# - name: Tune GitHub-hosted runner network
|
|
|
|
|
# uses: smorimoto/tune-github-hosted-runner-network@v1
|
|
|
|
|
# - uses: actions/checkout@v4
|
|
|
|
|
# - uses: actions/setup-node@v4
|
|
|
|
|
# with:
|
|
|
|
|
# node-version-file: '.nvmrc'
|
|
|
|
|
# cache: 'yarn'
|
|
|
|
|
# - uses: KittyCAD/action-install-cli@main
|
|
|
|
|
# - name: Install dependencies
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: yarn
|
|
|
|
|
# - name: Cache Playwright Browsers
|
|
|
|
|
# uses: actions/cache@v4
|
|
|
|
|
# with:
|
|
|
|
|
# path: |
|
|
|
|
|
# ~/.cache/ms-playwright/
|
|
|
|
|
# key: ${{ runner.os }}-playwright-${{ hashFiles('yarn.lock') }}
|
|
|
|
|
# - name: Install Playwright Browsers
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: yarn playwright install chromium --with-deps
|
|
|
|
|
# - name: Download Wasm Cache
|
|
|
|
|
# id: download-wasm
|
|
|
|
|
# if: needs.check-rust-changes.outputs.rust-changed == 'false'
|
|
|
|
|
# uses: dawidd6/action-download-artifact@v6
|
|
|
|
|
# continue-on-error: true
|
|
|
|
|
# with:
|
|
|
|
|
# github_token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
|
# name: wasm-bundle
|
|
|
|
|
# workflow: build-and-store-wasm.yml
|
|
|
|
|
# branch: main
|
|
|
|
|
# path: src/wasm-lib/pkg
|
|
|
|
|
# - name: copy wasm blob
|
|
|
|
|
# if: needs.check-rust-changes.outputs.rust-changed == 'false'
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: cp src/wasm-lib/pkg/wasm_lib_bg.wasm public
|
|
|
|
|
# continue-on-error: true
|
|
|
|
|
# - name: Setup Rust
|
|
|
|
|
# uses: dtolnay/rust-toolchain@stable
|
|
|
|
|
# - name: Cache Wasm (because rust diff)
|
|
|
|
|
# if: needs.check-rust-changes.outputs.rust-changed == 'true'
|
|
|
|
|
# uses: Swatinem/rust-cache@v2
|
|
|
|
|
# with:
|
|
|
|
|
# workspaces: './src/wasm-lib'
|
|
|
|
|
# - name: OR Cache Wasm (because wasm cache failed)
|
|
|
|
|
# if: steps.download-wasm.outcome == 'failure'
|
|
|
|
|
# uses: Swatinem/rust-cache@v2
|
|
|
|
|
# with:
|
|
|
|
|
# workspaces: './src/wasm-lib'
|
|
|
|
|
# - name: install good sed
|
|
|
|
|
# if: ${{ startsWith(matrix.os, 'macos') }}
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# brew install gnu-sed
|
|
|
|
|
# echo "/opt/homebrew/opt/gnu-sed/libexec/gnubin" >> $GITHUB_PATH
|
|
|
|
|
# - name: Install vector
|
|
|
|
|
# if: ${{ !startsWith(matrix.os, 'windows') }}
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# curl --proto '=https' --tlsv1.2 -sSfL https://sh.vector.dev > /tmp/vector.sh
|
|
|
|
|
# chmod +x /tmp/vector.sh
|
|
|
|
|
# /tmp/vector.sh -y -no-modify-path
|
|
|
|
|
# mkdir -p /tmp/vector
|
|
|
|
|
# cp .github/workflows/vector.toml /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_WORKFLOW#${GITHUB_WORKFLOW}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_REPOSITORY#${GITHUB_REPOSITORY}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_SHA#${GITHUB_SHA}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GITHUB_REF_NAME#${GITHUB_REF_NAME}#g" /tmp/vector.toml
|
|
|
|
|
# sed -i "s#GH_ACTIONS_AXIOM_TOKEN#${{secrets.GH_ACTIONS_AXIOM_TOKEN}}#g" /tmp/vector.toml
|
|
|
|
|
# cat /tmp/vector.toml
|
|
|
|
|
# ${HOME}/.vector/bin/vector --config /tmp/vector.toml &
|
|
|
|
|
# - name: Build Wasm (because rust diff)
|
|
|
|
|
# if: needs.check-rust-changes.outputs.rust-changed == 'true'
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: yarn build:wasm
|
|
|
|
|
# - name: OR Build Wasm (because wasm cache failed)
|
|
|
|
|
# if: steps.download-wasm.outcome == 'failure'
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: yarn build:wasm
|
|
|
|
|
# - name: build electron
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: yarn electron:package
|
|
|
|
|
# - uses: actions/download-artifact@v4
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# continue-on-error: true
|
|
|
|
|
# with:
|
|
|
|
|
# name: test-results-${{matrix.os}}-${{ github.sha }}
|
|
|
|
|
# path: test-results/
|
|
|
|
|
# - name: Run electron tests (with retries)
|
|
|
|
|
# id: retry
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# if [[ ! -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# # if no last run artifact, than run plawright normally
|
|
|
|
|
# echo "run playwright normally"
|
|
|
|
|
# if [[ "$IS_UBUNTU" == "true" ]]; then
|
|
|
|
|
# xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
# else
|
|
|
|
|
# yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
# fi
|
|
|
|
|
# # # send to axiom
|
|
|
|
|
# node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
# fi
|
|
|
|
|
|
|
|
|
|
# retry=1
|
|
|
|
|
# max_retrys=2
|
|
|
|
|
|
|
|
|
|
# # retry failed tests, doing our own retries because using inbuilt playwright retries causes connection issues
|
|
|
|
|
# while [[ $retry -le $max_retrys ]]; do
|
|
|
|
|
# if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
# if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
# echo "retried=true" >>$GITHUB_OUTPUT
|
|
|
|
|
# echo "run playwright with last failed tests and retry $retry"
|
|
|
|
|
# if [[ "$IS_UBUNTU" == "true" ]]; then
|
|
|
|
|
# xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
# else
|
|
|
|
|
# yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
# fi
|
|
|
|
|
# # send to axiom
|
|
|
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
fi
|
|
|
|
|
# node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
# retry=$((retry + 1))
|
|
|
|
|
# else
|
|
|
|
|
# echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
# exit 0
|
|
|
|
|
# fi
|
|
|
|
|
# else
|
|
|
|
|
# echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
# exit 0
|
|
|
|
|
# fi
|
|
|
|
|
# done
|
|
|
|
|
|
|
|
|
|
retry=1
|
|
|
|
|
max_retrys=2
|
|
|
|
|
# echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
|
|
|
|
|
# retry failed tests, doing our own retries because using inbuilt playwright retries causes connection issues
|
|
|
|
|
while [[ $retry -le $max_retrys ]]; do
|
|
|
|
|
if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
echo "retried=true" >>$GITHUB_OUTPUT
|
|
|
|
|
echo "run playwright with last failed tests and retry $retry"
|
|
|
|
|
if [[ "$IS_UBUNTU" == "true" ]]; then
|
|
|
|
|
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
else
|
|
|
|
|
yarn playwright test --config=playwright.electron.config.ts --grep=@electron || true
|
|
|
|
|
fi
|
|
|
|
|
# send to axiom
|
|
|
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log > /dev/null 2>&1
|
|
|
|
|
retry=$((retry + 1))
|
|
|
|
|
else
|
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
else
|
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
exit 0
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
echo "retried=false" >>$GITHUB_OUTPUT
|
|
|
|
|
|
|
|
|
|
if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
# if it still fails after 3 retrys, then fail the job
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
exit 0
|
|
|
|
|
env:
|
|
|
|
|
CI: true
|
|
|
|
|
NODE_ENV: development
|
|
|
|
|
VITE_KC_DEV_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
|
|
|
|
|
VITE_KC_SKIP_AUTH: true
|
|
|
|
|
IS_UBUNTU: ${{ startsWith(matrix.os, 'ubuntu') && 'true' || 'false' }}
|
|
|
|
|
#DEBUG: 'pw:browser*'
|
|
|
|
|
- name: send to axiom
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) && !startsWith(matrix.os, 'windows') }}
|
|
|
|
|
shell: bash
|
|
|
|
|
run: |
|
|
|
|
|
node playwrightProcess.mjs | tee /tmp/github-actions.log
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
with:
|
|
|
|
|
name: test-results-electron-${{ github.sha }}
|
|
|
|
|
path: test-results/
|
|
|
|
|
retention-days: 30
|
|
|
|
|
overwrite: true
|
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
|
|
|
if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
with:
|
|
|
|
|
name: playwright-report-electron-${{ github.sha }}
|
|
|
|
|
path: playwright-report/
|
|
|
|
|
retention-days: 30
|
|
|
|
|
overwrite: true
|
|
|
|
|
# if [[ -f "test-results/.last-run.json" ]]; then
|
|
|
|
|
# failed_tests=$(jq '.failedTests | length' test-results/.last-run.json)
|
|
|
|
|
# if [[ $failed_tests -gt 0 ]]; then
|
|
|
|
|
# # if it still fails after 3 retrys, then fail the job
|
|
|
|
|
# exit 1
|
|
|
|
|
# fi
|
|
|
|
|
# fi
|
|
|
|
|
# exit 0
|
|
|
|
|
# env:
|
|
|
|
|
# CI: true
|
|
|
|
|
# NODE_ENV: development
|
|
|
|
|
# VITE_KC_DEV_TOKEN: ${{ secrets.KITTYCAD_API_TOKEN_DEV }}
|
|
|
|
|
# VITE_KC_SKIP_AUTH: true
|
|
|
|
|
# IS_UBUNTU: ${{ startsWith(matrix.os, 'ubuntu') && 'true' || 'false' }}
|
|
|
|
|
# #DEBUG: 'pw:browser*'
|
|
|
|
|
# - name: send to axiom
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) && !startsWith(matrix.os, 'windows') }}
|
|
|
|
|
# shell: bash
|
|
|
|
|
# run: |
|
|
|
|
|
# node playwrightProcess.mjs | tee /tmp/github-actions.log
|
|
|
|
|
# - uses: actions/upload-artifact@v4
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# with:
|
|
|
|
|
# name: test-results-electron-${{ github.sha }}
|
|
|
|
|
# path: test-results/
|
|
|
|
|
# retention-days: 30
|
|
|
|
|
# overwrite: true
|
|
|
|
|
# - uses: actions/upload-artifact@v4
|
|
|
|
|
# if: ${{ !cancelled() && (success() || failure()) }}
|
|
|
|
|
# with:
|
|
|
|
|
# name: playwright-report-electron-${{ github.sha }}
|
|
|
|
|
# path: playwright-report/
|
|
|
|
|
# retention-days: 30
|
|
|
|
|
# overwrite: true
|
|
|
|
|