Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
madeye committed Dec 30, 2024
1 parent a426850 commit 119e033
Show file tree
Hide file tree
Showing 3 changed files with 96 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
./build-release -t ${{ matrix.target }} $compile_features $compile_compress
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: build/release/*
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
./build/build-host-release -t ${{ matrix.target }}
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.target }}
path: build/release/*
Expand Down
93 changes: 93 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Build PR
on:
pull_request:
types: [ opened, edited, reopened, review_requested ]
branches: [ master ]

env:
CARGO_TERM_COLOR: always

jobs:
build-cross:
runs-on: ubuntu-latest
env:
RUST_BACKTRACE: full
strategy:
matrix:
target:
- x86_64-unknown-linux-musl
- aarch64-unknown-linux-musl

steps:
- uses: actions/checkout@v2

- name: Install cross
run: cargo install cross

- name: Build ${{ matrix.target }}
timeout-minutes: 120
run: |
compile_target=${{ matrix.target }}
cd build
./build-release -t ${{ matrix.target }} $compile_features $compile_compress
build-unix:
runs-on: ${{ matrix.os }}
env:
RUST_BACKTRACE: full
strategy:
matrix:
os: [macos-latest]
target:
- x86_64-apple-darwin
- aarch64-apple-darwin
steps:
- uses: actions/checkout@v2

- name: Install GNU tar
if: runner.os == 'macOS'
run: |
brew install gnu-tar
# echo "::add-path::/usr/local/opt/gnu-tar/libexec/gnubin"
echo "/usr/local/opt/gnu-tar/libexec/gnubin" >> $GITHUB_PATH
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: ${{ matrix.target }}
default: true
override: true

- name: Build release
shell: bash
run: |
./build/build-host-release -t ${{ matrix.target }}
build-windows:
runs-on: windows-latest
env:
RUSTFLAGS: "-Ctarget-feature=+crt-static"
RUST_BACKTRACE: full
steps:
- uses: actions/checkout@v2

- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
default: true
override: true

- name: Build release
run: |
pwsh ./build/build-host-release.ps1
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: windows-native
path: build/release/*
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.3.0"
authors = ["Max Lv <[email protected]>"]
repository = "https://github.com/shadowsocks/qtun"
license = "MIT"
edition = "2024"
edition = "2021"

[[bin]]
name = "qtun-client"
Expand Down

0 comments on commit 119e033

Please sign in to comment.