Skip to content

Commit

Permalink
update cross
Browse files Browse the repository at this point in the history
  • Loading branch information
c8ef committed Sep 28, 2024
1 parent 576c2d0 commit 146464f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cross_musl.yml → .github/workflows/cross.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Cross (Musl)
name: Cross

on:
pull_request:
Expand All @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
cross: [arm-unknown-linux-musleabi, aarch64-unknown-linux-musl]
cross: [arm-none-linux-gnueabihf, aarch64-none-linux-gnu]

runs-on: ${{ matrix.os }}

concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-Musl-${{ matrix.cross }}
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-${{ matrix.cross }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v1
Expand All @@ -25,9 +25,9 @@ jobs:

- name: Installation
run: |
wget https://github.com/musl-cross/musl-cross/releases/download/20240903/${{ matrix.cross }}.tgz
tar -xvf ${{ matrix.cross }}.tgz
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
- name: Tests
run: |
xmake l ./scripts/test.lua -D -p cross --toolchain=muslcc --sdk=`pwd`/${{ matrix.cross }}
xmake l ./scripts/test.lua -D -p cross --sdk=`pwd`/arm-gnu-toolchain-13.3.rel1-x86_64-${{ matrix.cross }}

0 comments on commit 146464f

Please sign in to comment.