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
849 B

9 months ago
name: macOS (arm64)
5 years ago
on:
pull_request:
4 years ago
branches:
- dev
5 years ago
jobs:
build:
strategy:
fail-fast: false
5 years ago
matrix:
os: [macos-14]
arch: [arm64]
4 years ago
kind: [static, shared]
5 years ago
runs-on: ${{ matrix.os }}
3 years ago
concurrency:
11 months ago
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-macOS-${{ matrix.arch }}-${{ matrix.kind }}
3 years ago
cancel-in-progress: true
5 years ago
steps:
- uses: actions/checkout@v1
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@master
actions-cache-folder: '.xmake-cache'
5 years ago
4 years ago
- name: Tests
5 years ago
run: |
4 years ago
wget https://curl.haxx.se/ca/cacert.pem -O /tmp/cacert.pem
export CURL_CA_BUNDLE=/tmp/cacert.pem
xmake l ./scripts/test.lua -D -a ${{ matrix.arch }} -k ${{ matrix.kind }}