This repository was archived by the owner on May 4, 2022. It is now read-only.
File tree 3 files changed +9
-9
lines changed
3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 5
5
- image : docker:18.09
6
6
steps :
7
7
- checkout
8
- - setup_remote_docker
8
+ - setup_remote_docker :
9
+ version : 18.09.3
9
10
- run : apk add --no-cache --no-progress make git
10
11
- run : make test
11
12
build_and_test_changed :
12
13
docker :
13
14
- image : docker:18.09
14
15
steps :
15
16
- checkout
16
- - setup_remote_docker
17
+ - setup_remote_docker :
18
+ version : 18.09.3
17
19
- run : apk add --no-cache --no-progress make git
18
20
- run : make changed-test
19
21
build_test_and_deploy :
20
22
docker :
21
23
- image : docker:18.09
22
24
steps :
23
25
- checkout
24
- - setup_remote_docker
26
+ - setup_remote_docker :
27
+ version : 18.09.3
25
28
- run : apk add --no-cache --no-progress make git
26
29
- run : make test
27
30
- deploy :
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ COPY --from=0 /out/polygott-x11-vnc /usr/bin/polygott-x11-vnc
44
44
ENV LC_ALL=en_US.UTF-8
45
45
ENV LANG=en_US.UTF-8
46
46
ENV VIRTUAL_ENV="/opt/virtualenvs/python3"
47
- ENV PATH="${VIRTUAL_ENV}/bin:/usr/GNUstep/System/Tools:/usr/GNUstep/Local/Tools:${PATH}"
47
+ ENV PATH="/usr/local/go/bin: ${VIRTUAL_ENV}/bin:/usr/GNUstep/System/Tools:/usr/GNUstep/Local/Tools:${PATH}"
48
48
ENV PYTHONPATH="${VIRTUAL_ENV}/lib/python3.8/site-packages"
49
49
ENV USER=runner
50
50
Original file line number Diff line number Diff line change @@ -6,16 +6,13 @@ entrypoint = "main.go"
6
6
extensions = [
7
7
" go"
8
8
]
9
- aptRepos = [
10
- " ppa:longsleep/golang-backports"
11
- ]
12
9
13
10
packages = [
14
- " golang-1.14-go" ,
15
11
" pkg-config"
16
12
]
17
13
setup = [
18
- " go get -u github.com/saibing/bingo"
14
+ " cd /tmp && wget -q https://golang.org/dl/go1.14.7.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.14.7.linux-amd64.tar.gz && rm go1.14.7.linux-amd64.tar.gz" ,
15
+ " /usr/local/go/bin/go get -u github.com/saibing/bingo"
19
16
]
20
17
21
18
[compile ]
You can’t perform that action at this time.
0 commit comments