all: rename Poac to Cabin #4117
Workflow file for this run
This file contains 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: macOS | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
CABIN_TERM_COLOR: always | |
permissions: | |
contents: read | |
jobs: | |
build-and-test: | |
name: "build & test" | |
runs-on: macos-${{ matrix.osver }} | |
strategy: | |
fail-fast: false | |
matrix: | |
osver: [13, 14, 15] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-macos-deps | |
- name: Print versions | |
run: make versions | |
- name: First Generation Build | |
run: make -j4 | |
- name: Test the first generation | |
run: make test -j4 | |
- name: Second Generation Build | |
run: ./build/cabin build --verbose | |
- name: Test the second generation | |
run: ./cabin-out/debug/cabin test --verbose | |
- name: Third Generation Build & Test | |
run: ./cabin-out/debug/cabin --verbose run --release test --verbose | |
- name: Print Cabin version | |
run: ./cabin-out/debug/cabin version --verbose | |
- name: Create a new project with the third generation | |
run: ./cabin-out/debug/cabin new hello_world | |
- name: Run the new project | |
run: ../cabin-out/debug/cabin --verbose run | |
working-directory: hello_world | |
# - name: Test Cabin | |
# run: ctest --output-on-failure --verbose | |
# working-directory: build |