Add glibmm (2.66.8, 2.88.0) to xrepo #10437
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Cross | |
| on: | |
| pull_request: | |
| branches: | |
| - dev | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| cross: [arm-none-linux-gnueabihf, aarch64-none-linux-gnu] | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-Cross-${{ 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://developer.arm.com/-/media/Files/downloads/gnu/14.3.rel1/binrel/arm-gnu-toolchain-14.3.rel1-x86_64-${{ matrix.cross }}.tar.xz | |
| tar -xvf arm-gnu-toolchain-14.3.rel1-x86_64-${{ matrix.cross }}.tar.xz | |
| - name: Set up system dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libgl1-mesa-dev libglu1-mesa-dev | |
| - name: Tests | |
| run: | | |
| xmake l ./scripts/test.lua -D -p cross --sdk=`pwd`/arm-gnu-toolchain-14.3.rel1-x86_64-${{ matrix.cross }} |