Skip to content

Commit

Permalink
update cross toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
c8ef committed Sep 7, 2024
1 parent d15772e commit 555ecac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/cross_musl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
cross: [arm-linux-musleabi, aarch64-linux-musl]
cross: [arm-unknown-linux-musleabi, aarch64-unknown-linux-musl]

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

concurrency:
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-Musl-${{ matrix.cross }}
cancel-in-progress: true
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
Expand All @@ -25,10 +25,9 @@ jobs:

- 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
wget https://github.com/musl-cross/musl-cross/releases/download/20240903/${{ matrix.cross }}.tgz
tar -xvf ${{ matrix.cross }}.tgz
- name: Tests
run: |
xmake l ./scripts/test.lua -D -p cross --toolchain=muslcc --sdk=`pwd`/${{ matrix.cross }}-cross
xmake l ./scripts/test.lua -D -p cross --toolchain=muslcc --sdk=`pwd`/${{ matrix.cross }}
1 change: 0 additions & 1 deletion packages/a/async_simple/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ package("async_simple")

on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <async_simple/coro/Lazy.h>
async_simple::coro::Lazy<void> func() {
co_return;
}
Expand Down

0 comments on commit 555ecac

Please sign in to comment.