Add lock to avoid failure during clusters creation #255
Workflow file for this run
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
name: End-to-End Test | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
bug_reproduction: | |
timeout-minutes: 60 | |
runs-on: [self-hosted, Linux, X64] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.5' | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-dev.txt | |
make | |
- name: Create profile dir with 777 mode | |
run: | | |
mkdir -m 777 -p profile/data | |
- name: Run bug reproduction | |
run: | | |
python -m pytest test/e2e_tests -m "single_bug_reproduction" -s |