Skip to content

Commit

Permalink
up txmlconnector version to 6.19.2.21.21
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlebedev committed Oct 10, 2022
1 parent a656eae commit 12300ce
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
overwrite: true
extra_files: txmlconnector64-6.19.2.21.16.dll
extra_files: txmlconnector64-6.19.2.21.21.dll
binary_name: "txmlconnector-server"
pre_command: "apt-get update && apt-get install --no-install-recommends -y gcc-mingw-w64-x86-64 && export CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++"
ldflags: "-extldflags -static -s -w"
Expand All @@ -40,7 +40,7 @@ jobs:
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
overwrite: true
extra_files: txmlconnector64-6.19.2.21.16.dll
extra_files: txmlconnector64-6.19.2.21.21.dll
project_path: "examples/queues"
binary_name: "txmlconnector-queues"
pre_command: "apt-get update && apt-get install --no-install-recommends -y gcc-mingw-w64-x86-64 && export CGO_ENABLED=1 CC=x86_64-w64-mingw32-gcc CXX=x86_64-w64-mingw32-g++"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ sudo apt install wine64

```shell
export TC_LOG_LEVEL=debug
export TC_DLL_PATH=txmlconnector64-6.19.2.21.8.dll
export TC_DLL_PATH=txmlconnector64-6.19.2.21.21.dll
```

#### Example output:
Expand Down Expand Up @@ -115,6 +115,7 @@ docker-compose -f docker/transaq-clickhouse-exporter-compose.yaml -p transaq up
```
### Links
- [TXmlConnector last(2.21.21) version](https://files.comon.ru/usercontent/TXmlConnector.zip)
- [TRANSAQ Connector Forum](http://www.transaq.ru/forum/index.php?board=6.0)
- [TransaqConnector Linux Finam Forum](https://forum.finam.ru/posts/t109457-TransaqConnector-Linux)
- [TransaqGrpcWrapper](https://github.com/ivanantipin/transaqgrpc)
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ RUN \
rm -rf /tmp/* && \
mkdir -p logs

COPY txmlconnector64-6.19.2.21.14.dll /usr/bin/
COPY txmlconnector64-6.19.2.21.21.dll /usr/bin/

ENTRYPOINT ["wine64 /usr/bin/txmlconnector-server.exe"]
2 changes: 1 addition & 1 deletion docker/Dockerfile.go_build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apk add --no-cache --virtual build-dependencies --update mingw-w64-gcc gcc m

FROM alpine AS final

ENV TC_DLL_VER=6.19.2.21.16
ENV TC_DLL_VER=6.19.2.21.21
COPY --from=builder /go/bin/server.exe /usr/bin/txmlconnector-server.exe
COPY --from=builder /go/bin/client /usr/bin/txmlconnector-client
COPY ./txmlconnector64-${TC_DLL_VER}.dll /usr/bin/
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.go_build_ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apk add --no-cache --virtual build-dependencies --update mingw-w64-gcc gcc l

FROM ubuntu:22.04 AS final

ENV TC_DLL_VER=6.19.2.21.16
ENV TC_DLL_VER=6.19.2.21.21
COPY --from=builder /go/bin/server.exe /usr/bin/txmlconnector-server.exe
COPY --from=builder /go/bin/client /usr/bin/txmlconnector-client
COPY ./txmlconnector64-${TC_DLL_VER}.dll /usr/bin/
Expand Down
2 changes: 1 addition & 1 deletion docker/compose/txmlconnector-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- 50051:50051
command: "server"
client:
image: kmlebedev/txmlconnector:6.19.2.21.8
image: kmlebedev/txmlconnector:6.19.2.21.21
command: "client"
environment:
TC_LOGIN: "TCNN9979"
Expand Down
2 changes: 1 addition & 1 deletion docker/transaq-clickhouse-exporter-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

services:
server:
image: kmlebedev/txmlconnector:6.19.2.21.8
image: kmlebedev/txmlconnector:6.19.2.21.21
ports:
- 50051:50051
command: "server"
Expand Down
4 changes: 2 additions & 2 deletions docker/txmlconnector-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ version: '2'

services:
server:
image: kmlebedev/txmlconnector:6.19.2.21.8
image: kmlebedev/txmlconnector:6.19.2.21.21
ports:
- 50051:50051
command: "server"
client:
image: kmlebedev/txmlconnector:6.19.2.21.8
image: kmlebedev/txmlconnector:6.19.2.21.21
command: "client"
environment:
TC_LOGIN: "TCNN9979"
Expand Down
2 changes: 1 addition & 1 deletion server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import "C"

const (
txml_dll_name = "txmlconnector64"
txml_dll_ver_main = "6.19.2.21.16"
txml_dll_ver_main = "6.19.2.21.21"
)

var (
Expand Down
Binary file not shown.

0 comments on commit 12300ce

Please sign in to comment.