diff --git a/.github/workflows/develop.yaml b/.github/workflows/develop.yaml new file mode 100644 index 0000000..cd68663 --- /dev/null +++ b/.github/workflows/develop.yaml @@ -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 }} diff --git a/.github/workflows/docker-develop.yaml b/.github/workflows/docker-develop.yaml deleted file mode 100644 index c2ae786..0000000 --- a/.github/workflows/docker-develop.yaml +++ /dev/null @@ -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 }} diff --git a/.github/workflows/go-release.yaml b/.github/workflows/go-release.yaml deleted file mode 100644 index 7ada55f..0000000 --- a/.github/workflows/go-release.yaml +++ /dev/null @@ -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" diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml deleted file mode 100644 index d3c8c8c..0000000 --- a/.github/workflows/go-test.yaml +++ /dev/null @@ -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 .. diff --git a/.github/workflows/docker-release.yaml b/.github/workflows/release.yaml similarity index 57% rename from .github/workflows/docker-release.yaml rename to .github/workflows/release.yaml index 2974e65..1092419 100644 --- a/.github/workflows/docker-release.yaml +++ b/.github/workflows/release.yaml @@ -3,6 +3,42 @@ on: 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: + - 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: runs-on: ubuntu-latest steps: