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

Commit

Permalink
Upstream 1.6.9 (#24)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
4 people authored Sep 24, 2021
1 parent ef65f02 commit d81f1f3
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 64 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
- name: Build
run: ci/build.sh

- name: Latest image
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: ci/docker-push.sh latest

- name: Latest docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ci/docs.sh latest ${{ secrets.GITHUB_TOKEN }}
# - name: Latest image
# env:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# run: ci/docker-push.sh latest
#
# - name: Latest docs
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: ci/docs.sh latest ${{ secrets.GITHUB_TOKEN }}
108 changes: 54 additions & 54 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
name: release

on:
release:
types: [published]

jobs:
golang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: 1.16.x

- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: ci/test.sh

- name: Build
run: ci/build.sh

- name: Prepare release version
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV

- uses: AButler/[email protected]
with:
files: 'dist/*'
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Release image
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: ci/docker-push.sh $RELEASE_VERSION

- name: Latest release image
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: ci/docker-push.sh latest-release

- name: Release docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ci/docs.sh $RELEASE_VERSION ${{ secrets.GITHUB_TOKEN }}
#name: release
#
#on:
# release:
# types: [published]
#
#jobs:
# golang:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
#
# - name: Setup Golang
# uses: actions/setup-go@v2
# with:
# go-version: 1.16.x
#
# - uses: actions/cache@v1
# with:
# path: ~/go/pkg/mod
# key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
# restore-keys: |
# ${{ runner.os }}-go-
#
# - name: Test
# run: ci/test.sh
#
# - name: Build
# run: ci/build.sh
#
# - name: Prepare release version
# run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
#
# - uses: AButler/[email protected]
# with:
# files: 'dist/*'
# repo-token: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Release image
# env:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# run: ci/docker-push.sh $RELEASE_VERSION
#
# - name: Latest release image
# env:
# DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
# run: ci/docker-push.sh latest-release
#
# - name: Release docs
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: ci/docs.sh $RELEASE_VERSION ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d81f1f3

Please sign in to comment.