package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
895 B
34 lines
895 B
name: Cross (Musl) |
|
|
|
on: |
|
pull_request: |
|
branches: |
|
- dev |
|
|
|
jobs: |
|
build: |
|
strategy: |
|
matrix: |
|
os: [ubuntu-latest] |
|
cross: [arm-linux-musleabi, aarch64-linux-musl] |
|
|
|
runs-on: ${{ matrix.os }} |
|
|
|
concurrency: |
|
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-Musl-${{ matrix.cross }} |
|
cancel-in-progress: true |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- uses: xmake-io/github-action-setup-xmake@v1 |
|
with: |
|
xmake-version: branch@master |
|
|
|
- name: Installation |
|
run: | |
|
wget https://github.com/xmake-mirror/musl.cc/releases/download/20210202/${{ matrix.cross }}-cross.linux.tgz |
|
tar -xvf ${{ matrix.cross }}-cross.linux.tgz |
|
|
|
- name: Tests |
|
run: | |
|
xmake l ./scripts/test.lua -D -p cross --toolchain=muslcc --sdk=`pwd`/${{ matrix.cross }}-cross |
|
|
|
|