From 3a577315bc3557bfe7d350a59d6c39c2fc8858e8 Mon Sep 17 00:00:00 2001 From: "Maxim [maxirmx] Samsonov" Date: Sat, 29 Jun 2024 07:01:44 +0300 Subject: [PATCH] chore: createted MacOS workflow --- .github/workflows/macos.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/macos.yml diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 0000000..ade2ade --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,33 @@ +name: MacOS + +on: + push: + branches: [ main ] + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: macos-14 + steps: + - name: Select XCode + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: 14.3.1 + + - name: Brew install + run: | + brew install bison flex binutils libffi double-conversion boost jemalloc fmt glog gnu-sed bash zlib ncurses + echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH + + - name: Install gem + run: gem install tebako + + - name: Checkout sample + uses: actions/checkout@v4 + + - name: Package + run: tebako press -e app.rb -o sample.tebako -r sinatra + + - name: Look around + run: ls -la