general: add unit test for docker images
This commit is contained in:
parent
b368c75aa3
commit
abb32abff3
108
.github/workflows/develop.yaml
vendored
Normal file
108
.github/workflows/develop.yaml
vendored
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '**'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
go-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Setup Golang
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
|
||||||
|
- name: Run frontend unit test
|
||||||
|
run: |
|
||||||
|
export GO111MODULE=on
|
||||||
|
cd frontend
|
||||||
|
go get -v -t -d ./...
|
||||||
|
go test -v ./...
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
- name: Run proxy unit test
|
||||||
|
run: |
|
||||||
|
export GO111MODULE=on
|
||||||
|
cd proxy
|
||||||
|
go get -v -t -d ./...
|
||||||
|
go test -v ./...
|
||||||
|
cd ..
|
||||||
|
|
||||||
|
docker-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Test whois binary in frontend image
|
||||||
|
run: |
|
||||||
|
docker build -t local/frontend frontend/
|
||||||
|
docker run --rm --net host --entrypoint whois local/frontend github.com || exit 1
|
||||||
|
docker run --rm --net host --entrypoint whois local/frontend -h whois.ripe.net github.com || exit 1
|
||||||
|
docker run --rm --net host --entrypoint whois local/frontend -h whois.ripe.net:43 github.com || exit 1
|
||||||
|
|
||||||
|
- name: Test traceroute binary in proxy image
|
||||||
|
run: |
|
||||||
|
docker build -t local/proxy proxy/
|
||||||
|
docker run --rm --net host --entrypoint traceroute local/proxy 127.0.0.1 || exit 1
|
||||||
|
docker run --rm --net host --entrypoint traceroute local/proxy ::1 || exit 1
|
||||||
|
|
||||||
|
docker-develop:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs:
|
||||||
|
- go-test
|
||||||
|
- docker-test
|
||||||
|
if: github.event_name != 'pull_request'
|
||||||
|
steps:
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v2
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Login to Docker Hub
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build frontend docker image
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: '{{defaultContext}}:frontend'
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
xddxdd/bird-lg-go:develop
|
||||||
|
xddxdd/bird-lg-go:develop-${{ github.sha }}
|
||||||
|
ghcr.io/xddxdd/bird-lg-go:frontend-develop
|
||||||
|
ghcr.io/xddxdd/bird-lg-go:frontend-develop-${{ github.sha }}
|
||||||
|
|
||||||
|
- name: Build proxy docker image
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: '{{defaultContext}}:proxy'
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
xddxdd/bird-lgproxy-go:develop
|
||||||
|
xddxdd/bird-lgproxy-go:develop-${{ github.sha }}
|
||||||
|
ghcr.io/xddxdd/bird-lg-go:proxy-develop
|
||||||
|
ghcr.io/xddxdd/bird-lg-go:proxy-develop-${{ github.sha }}
|
51
.github/workflows/docker-develop.yaml
vendored
51
.github/workflows/docker-develop.yaml
vendored
@ -1,51 +0,0 @@
|
|||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- '**'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker-develop:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Set up QEMU
|
|
||||||
uses: docker/setup-qemu-action@v2
|
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v2
|
|
||||||
|
|
||||||
- name: Login to Docker Hub
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Login to GitHub Container Registry
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.repository_owner }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Build frontend docker image
|
|
||||||
uses: docker/build-push-action@v4
|
|
||||||
with:
|
|
||||||
context: '{{defaultContext}}:frontend'
|
|
||||||
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
|
||||||
push: true
|
|
||||||
tags: |
|
|
||||||
xddxdd/bird-lg-go:develop
|
|
||||||
xddxdd/bird-lg-go:develop-${{ github.sha }}
|
|
||||||
ghcr.io/xddxdd/bird-lg-go:frontend-develop
|
|
||||||
ghcr.io/xddxdd/bird-lg-go:frontend-develop-${{ github.sha }}
|
|
||||||
|
|
||||||
- name: Build proxy docker image
|
|
||||||
uses: docker/build-push-action@v4
|
|
||||||
with:
|
|
||||||
context: '{{defaultContext}}:proxy'
|
|
||||||
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
|
|
||||||
push: true
|
|
||||||
tags: |
|
|
||||||
xddxdd/bird-lgproxy-go:develop
|
|
||||||
xddxdd/bird-lgproxy-go:develop-${{ github.sha }}
|
|
||||||
ghcr.io/xddxdd/bird-lg-go:proxy-develop
|
|
||||||
ghcr.io/xddxdd/bird-lg-go:proxy-develop-${{ github.sha }}
|
|
35
.github/workflows/go-release.yaml
vendored
35
.github/workflows/go-release.yaml
vendored
@ -1,35 +0,0 @@
|
|||||||
on:
|
|
||||||
release:
|
|
||||||
types: [created]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
go-release:
|
|
||||||
name: Release Go Binary
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
goos: [linux, windows, darwin]
|
|
||||||
goarch: ["386", amd64, "arm", arm64]
|
|
||||||
exclude:
|
|
||||||
- goarch: "386"
|
|
||||||
goos: darwin
|
|
||||||
- goarch: "arm"
|
|
||||||
goos: darwin
|
|
||||||
- goarch: "arm"
|
|
||||||
goos: windows
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: wangyoucao577/go-release-action@v1.34
|
|
||||||
with:
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
goos: ${{ matrix.goos }}
|
|
||||||
goarch: ${{ matrix.goarch }}
|
|
||||||
project_path: "./frontend"
|
|
||||||
binary_name: "bird-lg-go"
|
|
||||||
- uses: wangyoucao577/go-release-action@v1.34
|
|
||||||
with:
|
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
goos: ${{ matrix.goos }}
|
|
||||||
goarch: ${{ matrix.goarch }}
|
|
||||||
project_path: "./proxy"
|
|
||||||
binary_name: "bird-lgproxy-go"
|
|
28
.github/workflows/go-test.yaml
vendored
28
.github/workflows/go-test.yaml
vendored
@ -1,28 +0,0 @@
|
|||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- '**'
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- 'master'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
go-test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-go@v4
|
|
||||||
|
|
||||||
- run: |
|
|
||||||
export GO111MODULE=on
|
|
||||||
cd frontend
|
|
||||||
go get -v -t -d ./...
|
|
||||||
go test -v ./...
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
- run: |
|
|
||||||
export GO111MODULE=on
|
|
||||||
cd proxy
|
|
||||||
go get -v -t -d ./...
|
|
||||||
go test -v ./...
|
|
||||||
cd ..
|
|
@ -3,6 +3,42 @@ on:
|
|||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
go-release:
|
||||||
|
name: Release Go Binary
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
goos: [linux, windows, darwin]
|
||||||
|
goarch: ["386", amd64, "arm", arm64]
|
||||||
|
exclude:
|
||||||
|
- goarch: "386"
|
||||||
|
goos: darwin
|
||||||
|
- goarch: "arm"
|
||||||
|
goos: darwin
|
||||||
|
- goarch: "arm"
|
||||||
|
goos: windows
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Release frontend
|
||||||
|
uses: wangyoucao577/go-release-action@v1.34
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
goos: ${{ matrix.goos }}
|
||||||
|
goarch: ${{ matrix.goarch }}
|
||||||
|
project_path: "./frontend"
|
||||||
|
binary_name: "bird-lg-go"
|
||||||
|
|
||||||
|
- name: Release proxy
|
||||||
|
uses: wangyoucao577/go-release-action@v1.34
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
goos: ${{ matrix.goos }}
|
||||||
|
goarch: ${{ matrix.goarch }}
|
||||||
|
project_path: "./proxy"
|
||||||
|
binary_name: "bird-lgproxy-go"
|
||||||
|
|
||||||
docker-release:
|
docker-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
Loading…
x
Reference in New Issue
Block a user