Skip to content

Commit b6f50ce

Browse files
committed
chore: use go
1 parent 11c528b commit b6f50ce

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ISHOCON_APP_LANG=ruby
1+
ISHOCON_APP_LANG=go
22

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
matrix:
1515
language:
1616
# - "crystal"
17-
# - "go"
17+
- "go"
1818
# - "nodejs"
1919
# - "php"
2020
# - "python"
21-
- "ruby"
21+
# - "ruby"
2222
env:
2323
ISHOCON_APP_LANG: ${{ matrix.language }}
2424
UNAME: ${{ secrets.DOCKER_HUB_USERNAME }}

.github/workflows/build_and_push_images.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ jobs:
8080
fail-fast: false
8181
matrix:
8282
language:
83-
- "crystal"
83+
# - "crystal"
8484
- "go"
85-
- "nodejs"
86-
- "php"
87-
- "python"
88-
- "ruby"
85+
# - "nodejs"
86+
# - "php"
87+
# - "python"
88+
# - "ruby"
8989
env:
9090
ISHOCON_APP_LANG: ${{ matrix.language }}
9191
UNAME: ${{ secrets.DOCKER_HUB_USERNAME }}

docker/app/go/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
ARG BASE_IMAGE=ishocon2-app-base:latest
22
FROM ${BASE_IMAGE}
33

4+
RUN sudo apt-get update && \
5+
sudo apt-get install -y percona-toolkit && \
6+
sudo apt-get clean
7+
48
# Go のインストール
59
ARG TARGETARCH
610
RUN sudo wget -q https://dl.google.com/go/go1.15.8.linux-${TARGETARCH}.tar.gz && \

0 commit comments

Comments
 (0)