Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
37 changes: 37 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,16 @@ jobs:
- run: |
tar -zxf quarto-${{needs.configure.outputs.version}}-linux-amd64.tar.gz
echo "$GITHUB_WORKSPACE/quarto-${{needs.configure.outputs.version}}/bin" >> $GITHUB_PATH

# Check for share/preview/quarto-preview.js
- name: Ensure share/preview/quarto-preview.js exists
shell: bash
run: |
if [ ! -f "share/preview/quarto-preview.js" ]; then
echo "::error file=share/preview/quarto-preview.js::Required file share/preview/quarto-preview.js not found. Check the windows build configure step."
exit 1
fi

- run: |
tar -tzvf quarto-${{needs.configure.outputs.version}}-linux-amd64.tar.gz | head
ls -lR
Expand Down Expand Up @@ -384,7 +394,24 @@ jobs:
path: .
- run: |
tar -xf quarto-${{needs.configure.outputs.version}}-win.zip

# Check for share/preview/quarto-preview.js
- name: Ensure share/preview/quarto-preview.js exists
shell: bash
run: |
if [ ! -f "share/preview/quarto-preview.js" ]; then
echo "::error file=share/preview/quarto-preview.js::Required file share/preview/quarto-preview.js not found. Check the windows build configure step."
exit 1
fi

- run: Add-Content $env:GITHUB_PATH "$env:GITHUB_WORKSPACE\bin"

- run: |
tar -tzvf quarto-${{needs.configure.outputs.version}}-win.zip
ls -lR
echo $PATH
shell: bash

- run: |
quarto check
quarto --paths
Expand Down Expand Up @@ -466,6 +493,16 @@ jobs:
- run: |
tar -zxf quarto-${{needs.configure.outputs.version}}-macos.tar.gz
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH

# Check for share/preview/quarto-preview.js
- name: Ensure share/preview/quarto-preview.js exists
shell: bash
run: |
if [ ! -f "share/preview/quarto-preview.js" ]; then
echo "::error file=share/preview/quarto-preview.js::Required file share/preview/quarto-preview.js not found. Check the windows build configure step."
exit 1
fi

- run: tar -tzvf quarto-${{needs.configure.outputs.version}}-macos.tar.gz | head
- run: ls -lR
- run: echo $PATH
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/test-smokes-parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,18 @@ on:
- main
- "v[1-9].[0-9]+" # run also on released version branch (for patch releases)
paths-ignore:
# Don't run on PRs that only change these files that
# are not relevant to the tested features
- "src/resources/language/**"
- "dev-docs/**"
# don't run on PR working on other workflows
- ".github/workflows/create-release.yml"
- ".github/workflows/performance-check.yml"
- ".github/workflows/stale-needs-repro.yml"
- ".github/workflows/test-bundle.yml"
- ".github/workflows/test-ff-matrix.yml"
- ".github/workflows/test-quarto-latexmk.yml"
- ".github/workflows/update-test-timing.yml"
push:
# only trigger on branches, not on tags
branches:
Expand Down
Loading