Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rise0chen committed Dec 16, 2024
1 parent 66ef0e6 commit d522618
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 34 deletions.
43 changes: 9 additions & 34 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,22 @@
name: Publish
on: [push, pull_request]

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:
publish:
name: publish
runs-on: ubuntu-latest
container: registry.cn-shanghai.aliyuncs.com/lebai/util:14.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Install Tools
run: |
sudo apt-get update
sudo apt-get install -y zip
- name: Install ali ossutil
uses: manyuanrong/[email protected]
with:
endpoint: ${{ secrets.AWS_ENDPOINT }}
access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
access-key-secret: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: install rust targets
run: |
rustup target add x86_64-unknown-linux-gnu
rustup target add aarch64-unknown-linux-gnu
- uses: Swatinem/rust-cache@v2
continue-on-error: true
- name: Install Cross Compiler
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends gcc-arm-linux-gnueabihf libc6-dev-armhf-cross
sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu libc6-dev-arm64-cross
- name: Publish
env:
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: bash ./ci.sh
uses: docker/build-push-action@v6
with:
context: .
push: false
tags: lebai/plugin:latest
build-args: |
AWS_ENDPOINT: ${{ secrets.AWS_ENDPOINT }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM registry.cn-shanghai.aliyuncs.com/lebai/util:14.04

WORKDIR /app
COPY . .

ARG AWS_ENDPOINT
ARG AWS_ACCESS_KEY_ID
ARG AWS_SECRET_ACCESS_KEY
ENV AWS_ENDPOINT=${AWS_ENDPOINT}
ENV AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
ENV AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}

RUN bash ./ci.sh

0 comments on commit d522618

Please sign in to comment.