feat: add docker test for current protocol(vmess, ss, trojan) #1205
Workflow file for this run
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
name: Build/Test/Release | |
on: | |
push: | |
branches: [ "*" ] | |
tags: [ "v*" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
test: | |
name: test ${{ matrix.platforms.target }} on ${{ matrix.platforms.os }} static - ${{ matrix.static }} | |
strategy: | |
matrix: | |
static: [true, false] | |
platforms: [ | |
{os: ubuntu-22.04, target: x86_64-unknown-linux-gnu}, | |
{os: ubuntu-22.04, target: aarch64-unknown-linux-gnu}, | |
{os: ubuntu-22.04, target: armv7-unknown-linux-gnueabihf}, | |
{os: ubuntu-22.04, target: armv7-unknown-linux-gnueabi}, | |
{os: macos-13, target: aarch64-apple-darwin}, | |
{os: macos-13, target: x86_64-apple-darwin}, | |
{os: windows-2022, target: x86_64-pc-windows-msvc}, | |
] | |
runs-on: ${{ matrix.platforms.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: ilammy/setup-nasm@v1 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
- name: Run cargo check | |
run: cargo check --all --all-features | |
- name: Run cargo clippy | |
run: cargo clippy --all --all-features -- -D warnings | |
- name: Run cargo test on macOS | |
if: ${{ matrix.os }} != 'macos-13'' | |
run: CLASH_RS_CI=true cargo test --all --all-features | |
- name: Run cargo test on other platforms | |
if: ${{ matrix.os }} == 'macos-13'' | |
run: cargo test --all --all-features | |
- name: Build artifacts | |
run: sh ./scripts/build.sh "${{ matrix.platforms.target }}" "${{ matrix.static }}" | |
- name: Stash artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: clash-${{ matrix.platforms.os }}-${{ matrix.platforms.target }}-${{ matrix.static }} | |
path: target/artifacts/ | |
- name: Create Release | |
if: contains(github.ref, 'tags/v') | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
- name: Upload Release Asset | |
if: contains(github.ref, 'tags/v') | |
id: upload-release-asset | |
uses: dwenegar/upload-release-assets@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
release_id: ${{ steps.create_release.outputs.id }} | |
assets_path: target/artifacts |