Skip to content

Commit

Permalink
Create rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tom8zds authored Jan 7, 2024
1 parent 199a670 commit f718528
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: https://github.com/KDAB/android_openssl
path: ssl
- run: ls && ls ssl
- uses: nttld/setup-ndk@v1
with:
ndk-version: r25c
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.34'
- name: Build
run: cd rust && cargo b --target aarch64-linux-android --release

0 comments on commit f718528

Please sign in to comment.