Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit d81f1f3

Browse files
kirillbilchenkovania-poohaandryashin
authored
Upstream 1.6.9 (#24)
Update pipeline * Added ability to build Ggr with pprof support (fixes aerokube#281) * Logging request proxy errors (fixes aerokube#290) * Correctly proxying HTTPS requests to hosts (fixes aerokube#273) * Doing minimum RLock calls possible (fixes aerokube#292) * Correctly working with gzipped requests (fixes aerokube#294) * Ability to use root token as authentication measure (fixes aerokube#298) * Adding ca-certificates to correctly work with external services (fixes aerokube#305) * Migrated to Golang 1.14 (fixes aerokube#317) * Migrated to Github Actions (fixes aerokube#319) * Logging platform name (fixes aerokube#316) * Correctly processing platform and platformName capabilities (fixes aerokube#313) * Fixed release workflow name * Added stale.yml file * Bump Golang to 1.15 * Bump Alpine version to 3.12 * Replaced set-env instruction in Github Actions with safer one * Bump Golang to 1.16 * Ability to print labels from extension capabilities (fixes aerokube#339) * Bump Alpine image version * Getting capability value from json wire and w3c sections * Better quick-start-guide.adoc * Explicitly setting browserVersion in top-level capabilites only * Cleanup * Update pipeline Co-authored-by: Ivan Krutov <[email protected]> Co-authored-by: Alexander Andryashin <[email protected]> Co-authored-by: Ivan Krutov <[email protected]>
1 parent ef65f02 commit d81f1f3

File tree

2 files changed

+64
-64
lines changed

2 files changed

+64
-64
lines changed

.github/workflows/build.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
- name: Build
3030
run: ci/build.sh
3131

32-
- name: Latest image
33-
env:
34-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
35-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
36-
run: ci/docker-push.sh latest
37-
38-
- name: Latest docs
39-
env:
40-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41-
run: ci/docs.sh latest ${{ secrets.GITHUB_TOKEN }}
32+
# - name: Latest image
33+
# env:
34+
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
35+
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
36+
# run: ci/docker-push.sh latest
37+
#
38+
# - name: Latest docs
39+
# env:
40+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41+
# run: ci/docs.sh latest ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

+54-54
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
1-
name: release
2-
3-
on:
4-
release:
5-
types: [published]
6-
7-
jobs:
8-
golang:
9-
runs-on: ubuntu-latest
10-
steps:
11-
- uses: actions/checkout@v2
12-
13-
- name: Setup Golang
14-
uses: actions/setup-go@v2
15-
with:
16-
go-version: 1.16.x
17-
18-
- uses: actions/cache@v1
19-
with:
20-
path: ~/go/pkg/mod
21-
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
22-
restore-keys: |
23-
${{ runner.os }}-go-
24-
25-
- name: Test
26-
run: ci/test.sh
27-
28-
- name: Build
29-
run: ci/build.sh
30-
31-
- name: Prepare release version
32-
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
33-
34-
- uses: AButler/[email protected]
35-
with:
36-
files: 'dist/*'
37-
repo-token: ${{ secrets.GITHUB_TOKEN }}
38-
39-
- name: Release image
40-
env:
41-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
42-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
43-
run: ci/docker-push.sh $RELEASE_VERSION
44-
45-
- name: Latest release image
46-
env:
47-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
48-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
49-
run: ci/docker-push.sh latest-release
50-
51-
- name: Release docs
52-
env:
53-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54-
run: ci/docs.sh $RELEASE_VERSION ${{ secrets.GITHUB_TOKEN }}
1+
#name: release
2+
#
3+
#on:
4+
# release:
5+
# types: [published]
6+
#
7+
#jobs:
8+
# golang:
9+
# runs-on: ubuntu-latest
10+
# steps:
11+
# - uses: actions/checkout@v2
12+
#
13+
# - name: Setup Golang
14+
# uses: actions/setup-go@v2
15+
# with:
16+
# go-version: 1.16.x
17+
#
18+
# - uses: actions/cache@v1
19+
# with:
20+
# path: ~/go/pkg/mod
21+
# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
22+
# restore-keys: |
23+
# ${{ runner.os }}-go-
24+
#
25+
# - name: Test
26+
# run: ci/test.sh
27+
#
28+
# - name: Build
29+
# run: ci/build.sh
30+
#
31+
# - name: Prepare release version
32+
# run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
33+
#
34+
# - uses: AButler/[email protected]
35+
# with:
36+
# files: 'dist/*'
37+
# repo-token: ${{ secrets.GITHUB_TOKEN }}
38+
#
39+
# - name: Release image
40+
# env:
41+
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
42+
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
43+
# run: ci/docker-push.sh $RELEASE_VERSION
44+
#
45+
# - name: Latest release image
46+
# env:
47+
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
48+
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
49+
# run: ci/docker-push.sh latest-release
50+
#
51+
# - name: Release docs
52+
# env:
53+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54+
# run: ci/docs.sh $RELEASE_VERSION ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)