summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-07-26 02:08:50 +0200
committerValery Piashchynski <[email protected]>2022-07-26 02:08:50 +0200
commiteab1299ae453e148d3feca98366282c17863f912 (patch)
tree0e6d4d9b87b0a0d0186f68d68d631c07fc8c2429 /.github
parent71c427d90f161cb8b00b448bf233987bfa2cee4c (diff)
kafka: remove from the beta.2
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml9
-rw-r--r--.github/workflows/release_dep.yml2
-rw-r--r--.github/workflows/release_grpc.yml9
-rw-r--r--.github/workflows/tests.yml2
4 files changed, 6 insertions, 16 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 30faad75..64ab21bb 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -22,31 +22,26 @@ jobs:
compiler: gcc
archiver: tar
arch: amd64
- tags: ''
# -----
- os: linux
compiler: gcc
archiver: tar
arch: arm64
- tags: ''
# -----
- os: darwin
compiler: gcc
archiver: tar
arch: arm64
- tags: ''
# -----
- os: freebsd
compiler: gcc
archiver: tar
arch: amd64
- tags: ''
# -----
- os: ''
compiler: musl-gcc # more info: <https://musl.libc.org/>
archiver: zip
arch: amd64
- tags: -tags musl
steps:
- name: Set up Go
uses: actions/setup-go@v3
@@ -90,13 +85,13 @@ jobs:
CC: ${{ matrix.compiler }}
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
GPG_PASS: ${{secrets.GPG_PASS}}
- CGO_ENABLED: 1
+ CGO_ENABLED: 0
LDFLAGS: >-
-s
-X github.com/roadrunner-server/roadrunner/v2/internal/meta.version=${{ steps.values.outputs.version }}
-X github.com/roadrunner-server/roadrunner/v2/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}
run: |
- go build ${{ matrix.tags }} -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
+ go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" ./cmd/rr
stat "./${{ steps.values.outputs.binary-name }}"
gpg --detach-sign --armor "./${{ steps.values.outputs.binary-name }}"
diff --git a/.github/workflows/release_dep.yml b/.github/workflows/release_dep.yml
index fd92eb96..f11547c3 100644
--- a/.github/workflows/release_dep.yml
+++ b/.github/workflows/release_dep.yml
@@ -53,7 +53,7 @@ jobs:
CC: ${{ matrix.compiler }}
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
GPG_PASS: ${{secrets.GPG_PASS}}
- CGO_ENABLED: 1
+ CGO_ENABLED: 0
LDFLAGS: >-
-s
-X github.com/roadrunner-server/roadrunner/v2/internal/meta.version=${{ steps.values.outputs.version }}
diff --git a/.github/workflows/release_grpc.yml b/.github/workflows/release_grpc.yml
index 19e64bde..9964b6f6 100644
--- a/.github/workflows/release_grpc.yml
+++ b/.github/workflows/release_grpc.yml
@@ -22,31 +22,26 @@ jobs:
compiler: gcc
archiver: tar
arch: amd64
- tags: ''
#----------
- os: linux
compiler: gcc
archiver: tar
arch: arm64
- tags: ''
#----------
- os: freebsd
compiler: gcc
archiver: tar
arch: amd64
- tags: ''
#----------
- os: darwin
compiler: gcc
archiver: tar
arch: arm64
- tags: ''
#----------
- os: ''
compiler: musl-gcc # more info: <https://musl.libc.org/>
archiver: zip
arch: amd64
- tags: -tags musl
steps:
- name: Set up Go
uses: actions/setup-go@v3
@@ -90,11 +85,11 @@ jobs:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
CC: ${{ matrix.compiler }}
- CGO_ENABLED: 1
+ CGO_ENABLED: 0
LDFLAGS: >-
-s
run: |
- go build ${{ matrix.tags }} -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" protoc_plugins/protoc-gen-php-grpc/main.go
+ go build -trimpath -ldflags "$LDFLAGS" -o "./${{ steps.values.outputs.binary-name }}" protoc_plugins/protoc-gen-php-grpc/main.go
stat "./${{ steps.values.outputs.binary-name }}"
gpg --detach-sign --armor "./${{ steps.values.outputs.binary-name }}"
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 6eb3b215..8ac3a953 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -119,7 +119,7 @@ jobs:
env:
GOOS: ${{ matrix.os }}
GOARCH: amd64
- CGO_ENABLED: 1
+ CGO_ENABLED: 0
LDFLAGS: -s
-X github.com/roadrunner-server/roadrunner/v2/internal/meta.version=${{ steps.values.outputs.version }}
-X github.com/roadrunner-server/roadrunner/v2/internal/meta.buildTime=${{ steps.values.outputs.timestamp }}