-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kevin Gartland
committed
Nov 15, 2023
1 parent
d45ed03
commit 22e08cc
Showing
1 changed file
with
39 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Cypress-nightly | ||
on: | ||
workflow_call: | ||
jobs: | ||
native: | ||
env: | ||
DOCKER: false | ||
FUZZBUCKET_SSH_KEY: ${{ secrets.FUZZBUCKET_SSH_KEY }} | ||
FUZZBUCKET_URL: ${{ secrets.FUZZBUCKET_URL }} | ||
FUZZBUCKET_CREDENTIALS: ${{ secrets.FUZZBUCKET_CREDENTIALS }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11 | ||
- uses: extractions/setup-just@v1 | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: executables | ||
path: bin | ||
- run: chmod -R +x ./bin | ||
- run: echo "${FUZZBUCKET_SSH_KEY}" > test/cy/fuzzbucket-ssh-key && chmod 600 test/cy/fuzzbucket-ssh-key | ||
- run: just cy install | ||
- run: just cy test | ||
- run: just cy test-deploy | ||
|
||
- name: Setup tmate session | ||
if: ${{ failure() }} | ||
uses: mxschmitt/action-tmate@v3 | ||
with: | ||
limit-access-to-actor: true |