diff options
author | Eric Molitor <emolitor@molitor.org> | 2020-12-24 12:36:16 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-12-25 01:51:58 -0600 |
commit | 3e535f2f31226f225ad4335c678dcd13c6295950 (patch) | |
tree | d1194832b1750920f3b263fe3eb43835bf42fced | |
parent | d7a2436cea81168078c7fdfc65114749abcbf9c6 (diff) | |
download | toybox-3e535f2f31226f225ad4335c678dcd13c6295950.tar.gz |
Add MacOS 11.0 to CI Builds
-rw-r--r-- | .github/workflows/toybox.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/toybox.yml b/.github/workflows/toybox.yml index b3b16676..1b463b2a 100644 --- a/.github/workflows/toybox.yml +++ b/.github/workflows/toybox.yml @@ -7,6 +7,20 @@ on: branches: [ master ] jobs: + MacOS-11_0: + runs-on: macos-11.0 + + steps: + - uses: actions/checkout@v2 + - name: Setup + run: brew install gnu-sed + - name: Configure + run: make macos_defconfig + - name: Build + run: make + - name: Test + run: VERBOSE=1 make tests + MacOS-10_15: runs-on: macos-10.15 |