Skip to content

Commit

Permalink
chore: createted MacOS workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Jun 29, 2024
1 parent e1ed7a1 commit 3a57731
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3a57731

Please sign in to comment.