-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
21 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,21 @@ | ||
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: | ||
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |