|
6 | 6 | - 'v*'
|
7 | 7 |
|
8 | 8 | jobs:
|
9 |
| - build-client: |
10 |
| - name: Build Client |
11 |
| - runs-on: ubuntu-latest |
12 |
| - timeout-minutes: 10 |
13 |
| - steps: |
14 |
| - - name: Checkout |
15 |
| - uses: actions/checkout@v4 |
| 9 | + # build-client: |
| 10 | + # name: Build Client |
| 11 | + # runs-on: ubuntu-latest |
| 12 | + # timeout-minutes: 10 |
| 13 | + # steps: |
| 14 | + # - name: Checkout |
| 15 | + # uses: actions/checkout@v4 |
16 | 16 |
|
17 |
| - - name: Read .nvmrc |
18 |
| - run: echo "##[set-output name=NVMRC;]$(cat ./client/.nvmrc)" |
19 |
| - id: nvm |
| 17 | + # - name: Read .nvmrc |
| 18 | + # run: echo "##[set-output name=NVMRC;]$(cat ./client/.nvmrc)" |
| 19 | + # id: nvm |
20 | 20 |
|
21 |
| - - name: Use Node.js (.nvmrc) |
22 |
| - uses: actions/setup-node@v1 |
23 |
| - with: |
24 |
| - node-version: "${{ steps.nvm.outputs.NVMRC }}" |
| 21 | + # - name: Use Node.js (.nvmrc) |
| 22 | + # uses: actions/setup-node@v1 |
| 23 | + # with: |
| 24 | + # node-version: "${{ steps.nvm.outputs.NVMRC }}" |
25 | 25 |
|
26 |
| - - name: Install dependencies |
27 |
| - run: cd ./client && rm -rf node_modules && yarn install --frozen-lockfile |
| 26 | + # - name: Install dependencies |
| 27 | + # run: cd ./client && rm -rf node_modules && yarn install --frozen-lockfile |
28 | 28 |
|
29 |
| - - name: Build client |
30 |
| - run: NODE_OPTIONS="--max_old_space_size=4096" cd ./client && yarn build |
| 29 | + # - name: Build client |
| 30 | + # run: NODE_OPTIONS="--max_old_space_size=4096" cd ./client && yarn build |
31 | 31 |
|
32 |
| - - name: Save artifacts |
33 |
| - uses: actions/upload-artifact@v4 |
34 |
| - with: |
35 |
| - name: client-dist |
36 |
| - path: client/packages/host/dist |
37 |
| - retention-days: 1 |
| 32 | + # - name: Save artifacts |
| 33 | + # uses: actions/upload-artifact@v4 |
| 34 | + # with: |
| 35 | + # name: client-dist |
| 36 | + # path: client/packages/host/dist |
| 37 | + # retention-days: 1 |
38 | 38 |
|
39 |
| - build-server: |
40 |
| - name: Build Server |
41 |
| - needs: build-client |
42 |
| - runs-on: ubuntu-latest |
43 |
| - timeout-minutes: 20 |
44 |
| - steps: |
45 |
| - - name: Checkout |
46 |
| - uses: actions/checkout@v4 |
| 39 | + # build-server: |
| 40 | + # name: Build Server |
| 41 | + # needs: build-client |
| 42 | + # runs-on: ubuntu-latest |
| 43 | + # timeout-minutes: 20 |
| 44 | + # steps: |
| 45 | + # - name: Checkout |
| 46 | + # uses: actions/checkout@v4 |
47 | 47 |
|
48 |
| - - name: Load client artifacts |
49 |
| - uses: actions/download-artifact@v4 |
50 |
| - with: |
51 |
| - name: client-dist |
52 |
| - path: client/packages/host/dist |
| 48 | + # - name: Load client artifacts |
| 49 | + # uses: actions/download-artifact@v4 |
| 50 | + # with: |
| 51 | + # name: client-dist |
| 52 | + # path: client/packages/host/dist |
53 | 53 |
|
54 |
| - - name: Build server |
55 |
| - run: cd ./server && cargo build --bin remote_server --bin remote_server_cli |
| 54 | + # - name: Build server |
| 55 | + # run: cd ./server && cargo build --bin remote_server --bin remote_server_cli |
56 | 56 |
|
57 |
| - - name: Save artifacts |
58 |
| - uses: actions/upload-artifact@v4 |
59 |
| - with: |
60 |
| - name: server-executables |
61 |
| - path: | |
62 |
| - server/target/debug/remote_server |
63 |
| - server/target/debug/remote_server_cli |
64 |
| - retention-days: 1 |
| 57 | + # - name: Save artifacts |
| 58 | + # uses: actions/upload-artifact@v4 |
| 59 | + # with: |
| 60 | + # name: server-executables |
| 61 | + # path: | |
| 62 | + # server/target/debug/remote_server |
| 63 | + # server/target/debug/remote_server_cli |
| 64 | + # retention-days: 1 |
65 | 65 |
|
66 | 66 | dockerise:
|
67 | 67 | name: Dockerise
|
68 |
| - needs: build-server |
| 68 | + # needs: build-server |
69 | 69 | runs-on: ubuntu-latest
|
70 | 70 | timeout-minutes: 5
|
71 | 71 | steps:
|
|
0 commit comments