File tree Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Expand file tree Collapse file tree 3 files changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ platform : darwin
2
+
3
+ # image_resource:
4
+ # type: docker-image
5
+ # source: {repository: concourse/bin-ci}
6
+
7
+ inputs :
8
+ - name : postgresql
9
+ path : postgresql
10
+
11
+ run :
12
+ path : pwd
13
+ # postgresql/check
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e -x
3
+
4
+ export CFLAGS=" -O0"
5
+
6
+ ./configure --enable-debug --enable-cassert --enable-tap-tests --enable-depend
7
+
8
+ make check
9
+
10
+
Original file line number Diff line number Diff line change
1
+
2
+
3
+
4
+ ssh-keygen -t rsa -f worker
5
+
6
+ cat <<-KEY > host_key.pub
7
+ ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDfLQY4mn3VU1fZ0XB0w2qJOo/CEEo73sT9sGIGh/y+NRogx6oj42XB/3ko4WUXg8xgHlSVSwSD4M6V3LjQW8bLdM0qDgMe4Hxhg9OhAedw6Zwmo/c8yPhH4dW1BDl3RXv/laxG0/0C2mZfod/78ShcARy4pJe8oBi8eyqnfIWGWCeojLJzfb85W3kdomWcq9tZcoMtwaHJ5a998B2kixLRif61SRQD+1G+Xz/oD2mtUIaaKgZUXNnJ2xm+MnIErNFi95L0gttB27BRQ72VTSUBIbD2JOIBuVT/9fjjjH79FxsPGIcDgDM7VRmlfBhl5k05oH5NBCNlNgDzv3if5hzn stas@bladerunner
8
+ KEY
9
+
10
+ cat <<-JSON > worker.json
11
+ {
12
+ "name": "stas",
13
+ "platform": "houdini",
14
+ "tags": ["macos","amd64"],
15
+ "resource_types": []
16
+ }
17
+ JSON
18
+
19
+ ssh -p 2222 br.theor.mephi.ru -i worker -o UserKnownHostsFile=host_key.pub -R0.0.0.0:0:127.0.0.1:7777 forward-worker < worker.json
20
+
You can’t perform that action at this time.
0 commit comments