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
954 B
34 lines
954 B
2 months ago
|
name: Cross
|
||
4 years ago
|
|
||
|
on:
|
||
|
pull_request:
|
||
4 years ago
|
branches:
|
||
|
- dev
|
||
4 years ago
|
|
||
|
jobs:
|
||
|
build:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest]
|
||
2 months ago
|
cross: [arm-none-linux-gnueabihf, aarch64-none-linux-gnu]
|
||
4 years ago
|
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
|
||
3 years ago
|
concurrency:
|
||
2 months ago
|
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-${{ matrix.cross }}
|
||
3 months ago
|
cancel-in-progress: true
|
||
4 years ago
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- uses: xmake-io/github-action-setup-xmake@v1
|
||
|
with:
|
||
2 years ago
|
xmake-version: branch@master
|
||
4 years ago
|
|
||
|
- name: Installation
|
||
|
run: |
|
||
2 months ago
|
wget https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-x86_64-${{ matrix.cross }}.tar.xz
|
||
|
tar -xvf arm-gnu-toolchain-13.3.rel1-x86_64-${{ matrix.cross }}.tar.xz
|
||
4 years ago
|
|
||
|
- name: Tests
|
||
|
run: |
|
||
2 months ago
|
xmake l ./scripts/test.lua -D -p cross --sdk=`pwd`/arm-gnu-toolchain-13.3.rel1-x86_64-${{ matrix.cross }}
|