Skip to content

Commit f42255c

Browse files
committed
Check
1 parent ed6682d commit f42255c

File tree

1 file changed

+48
-48
lines changed

1 file changed

+48
-48
lines changed

.github/workflows/dockerise.yaml

+48-48
Original file line numberDiff line numberDiff line change
@@ -6,66 +6,66 @@ on:
66
- 'v*'
77

88
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
1616

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
2020

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 }}"
2525

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
2828

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
3131

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
3838

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
4747

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
5353

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
5656

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
6565

6666
dockerise:
6767
name: Dockerise
68-
needs: build-server
68+
# needs: build-server
6969
runs-on: ubuntu-latest
7070
timeout-minutes: 5
7171
steps:

0 commit comments

Comments
 (0)