Skip to content

Commit d41f104

Browse files
authored
Merge pull request #1076 from trycompai/main
[comp] Production Deploy
2 parents 21985bb + 08f3a8a commit d41f104

14 files changed

Lines changed: 22 additions & 22 deletions

.github/workflows/auto-pr-to-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- COMP-*
1717
jobs:
1818
create-pull-request:
19-
runs-on: ubuntu-latest-custom
19+
runs-on: warp-ubuntu-latest-arm64-4x
2020
continue-on-error: true
2121
permissions:
2222
pull-requests: write

.github/workflows/auto-pr-to-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
create-pull-request:
8-
runs-on: ubuntu-latest-custom
8+
runs-on: warp-ubuntu-latest-arm64-4x
99
permissions:
1010
pull-requests: write
1111
contents: write

.github/workflows/check-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
contents: read
88
jobs:
99
check-types:
10-
runs-on: buildjet-4vcpu-ubuntu-2204
10+
runs-on: warp-ubuntu-latest-arm64-4x
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: ./.github/actions/dangerous-git-checkout

.github/workflows/database-migrations-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
migrate:
99
name: Run Database Migrations
10-
runs-on: ubuntu-latest-custom
10+
runs-on: warp-ubuntu-latest-arm64-4x
1111
steps:
1212
- name: Checkout repository
1313
uses: actions/checkout@v4

.github/workflows/database-migrations-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
migrate:
99
name: Run Database Migrations
10-
runs-on: ubuntu-latest-custom
10+
runs-on: warp-ubuntu-latest-arm64-4x
1111
steps:
1212
- name: Checkout repository
1313
uses: actions/checkout@v4

.github/workflows/deploy-test-results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121

2222
jobs:
2323
deploy-results:
24-
runs-on: ubuntu-latest
24+
runs-on: warp-ubuntu-latest-arm64-4x
2525

2626
steps:
2727
- name: Checkout

.github/workflows/e2e-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ env:
2929
jobs:
3030
e2e-tests:
3131
name: E2E Tests - ${{ matrix.project }}
32-
runs-on: ubuntu-latest-custom
32+
runs-on: warp-ubuntu-latest-arm64-4x
3333
timeout-minutes: 20
3434

3535
strategy:
@@ -62,7 +62,7 @@ jobs:
6262
bun-version: latest
6363

6464
- name: Cache dependencies
65-
uses: actions/cache@v4
65+
uses: WarpBuilds/cache@v1
6666
with:
6767
path: |
6868
~/.bun/install/cache
@@ -75,7 +75,7 @@ jobs:
7575
${{ runner.os }}-bun-
7676
7777
- name: Cache Next.js build
78-
uses: actions/cache@v4
78+
uses: WarpBuilds/cache@v1
7979
with:
8080
path: |
8181
apps/app/.next/cache
@@ -116,7 +116,7 @@ jobs:
116116
echo "browser_versions=$BROWSER_VERSIONS" >> $GITHUB_OUTPUT
117117
118118
- name: Cache Playwright browsers
119-
uses: actions/cache@v4
119+
uses: WarpBuilds/cache@v1
120120
id: playwright-cache
121121
with:
122122
path: |
@@ -436,7 +436,7 @@ jobs:
436436
# Job to post consolidated test results
437437
post-results:
438438
name: Post Test Results to PR
439-
runs-on: ubuntu-latest
439+
runs-on: warp-ubuntu-latest-arm64-4x
440440
needs: e2e-tests
441441
if: always() && github.event_name == 'pull_request'
442442

.github/workflows/github-releases-to-discord.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
github-releases-to-discord:
99
permissions:
1010
contents: read
11-
runs-on: ubuntu-latest
11+
runs-on: warp-ubuntu-latest-arm64-4x
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v3

.github/workflows/quick-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
quick-test:
17-
runs-on: ubuntu-latest
17+
runs-on: warp-ubuntu-latest-arm64-4x
1818
strategy:
1919
matrix:
2020
app: [app]

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
release:
1616
name: Release
17-
runs-on: ubuntu-latest-custom
17+
runs-on: warp-ubuntu-latest-arm64-4x
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
3636
bun-version: latest # Optional: specify a bun version
3737

3838
- name: Cache dependencies
39-
uses: actions/cache@v4
39+
uses: WarpBuilds/cache@v1
4040
with:
4141
path: |
4242
~/.bun/install/cache

0 commit comments

Comments
 (0)