Skip to content

Commit

Permalink
CI: REVERTME: Test if -dev version string check works for upload script
Browse files Browse the repository at this point in the history
This is both a slightly YOLO way to test this, but also kind of the only
way to test this in a production-like environment. So... YOLO!

(Sorry!)
  • Loading branch information
DeeDeeG committed Feb 6, 2024
1 parent 5b58255 commit cb0a56a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,10 @@ jobs:
Xvfb -screen 0 1024x768x24+32 :99 & nohup ffmpeg -video_size 1024x768 -f x11grab -i :99.0 ./tests/videos/out.mpg & DISPLAY=:99 PLAYWRIGHT_JUNIT_OUTPUT_NAME=report.xml npx playwright test --reporter=junit,list
- name: Add binaries to Rolling Release Repo - Linux
if: ${{ github.event_name == 'push' && runner.os == 'Linux' }}
# We only want to upload rolling binaries if they are a commit to master
# Otherwise we want to not upload if it's a PR or manually triggered build
if: ${{ runner.os == 'Linux' }}
# TEMPORARY. REVERT ME.
# Always run the Rolling release upload script. We want to check if this PR's fix works or not.
# TEMPORARY. REVERT ME.
run: |
cd ./script/rolling-release-scripts
npm install
Expand Down

0 comments on commit cb0a56a

Please sign in to comment.