Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Api7ee runtime test #410

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
269 changes: 0 additions & 269 deletions .circleci/config.yml

This file was deleted.

46 changes: 46 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build api7ee-runtime

on:
push:
branches:
- api7ee-runtime-test
pull_request:
branches:
- api7ee-runtime-test

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build
timeout-minutes: 30
env:
version: 0.0.0
strategy:
fail-fast: false
matrix:
platform:
- runner: ubuntu-22.04
arch: amd64
build_arch: linux/amd64

runs-on: ${{ matrix.platform.runner }}
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: |
sudo apt-get install -y make ruby ruby-dev rubygems build-essential

- name: Build api7ee-runtime deb
run: |
make package type=deb app=api7ee-runtime runtime_version=${version} image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
path: ./output/api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
69 changes: 0 additions & 69 deletions .github/workflows/package-apisix-dashboard-deb-ubuntu20.04.yml

This file was deleted.

Loading