Skip to content

Commit dca15a6

Browse files
author
Foo Bar
committed
chage: add api7ee-runtime
1 parent 83ccd15 commit dca15a6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+122
-2832
lines changed

.circleci/config.yml

Lines changed: 0 additions & 269 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Build api7ee-runtime
2+
3+
on:
4+
push:
5+
branches:
6+
- api7ee-runtime-test
7+
pull_request:
8+
branches:
9+
- api7ee-runtime-test
10+
11+
jobs:
12+
release:
13+
name: Release
14+
timeout-minutes: 60
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
platform:
19+
- runner: ubuntu-22.04
20+
arch: amd64
21+
build_arch: linux/amd64
22+
- runner: buildjet-2vcpu-ubuntu-2204-arm
23+
arch: arm64
24+
build_arch: linux/arm64/v8
25+
26+
runs-on: ${{ matrix.platform.runner }}
27+
steps:
28+
- name: Checkout code
29+
uses: actions/checkout@v2
30+
31+
- name: Install dependencies
32+
run: |
33+
sudo apt-get install -y make ruby ruby-dev rubygems build-essential
34+
35+
- name: Build api7ee-runtime deb
36+
run: |
37+
make package type=deb app=api7ee-runtime runtime_version=dev image_base=debian image_tag=bullseye-slim arch=${{ matrix.platform.build_arch }}
38+
39+
- name: Upload Artifact
40+
uses: actions/upload-artifact@v4
41+
with:
42+
name: api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb
43+
path: ./output/api7ee-runtime_${{ env.version }}-0~debianbullseye-slim_${{ matrix.platform.arch }}.deb

.github/workflows/package-apisix-dashboard-deb-ubuntu20.04.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)