feat(create): add gpu-create command with retry and fallback logic (#… #836
This file contains hidden or 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: e2etest-Test_CustomBranchCustomSetupCustomFolder | |
| on: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| env: | |
| BREV_SETUP_TEST_CMD_DIR: /home/brev/workspace/actions-runner/_work/brev-cli/brev-cli | |
| jobs: | |
| Test_CustomBranchCustomSetupCustomFolder: | |
| runs-on: [self-hosted] | |
| if: "contains(github.event.head_commit.message, 'e2etest')" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.0' | |
| cache: true | |
| - name: expire test cache | |
| run: go clean -testcache | |
| - name: test | |
| run: go test -timeout 240s -run ^Test_CustomBranchCustomSetupCustomFolder$ github.com/brevdev/brev-cli/e2etest/setup | |
| # - name: Report Status | |
| # if: always() | |
| # uses: ravsamhq/notify-slack-action@v1 | |
| # with: | |
| # status: ${{ job.status }} | |
| # notify_when: 'failure' | |
| # env: | |
| # SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }} |