Skip to content

Commit

Permalink
build wip
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed May 16, 2024
1 parent 8e40da2 commit d45ac26
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@4
with:
persist-credentials: false

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'

- name: Print env
run: |
Expand All @@ -46,15 +54,13 @@ jobs:
# cmd "${{ matrix.config.environment_script }}"

- name: Install dependencies on ubuntu
uses: actions/setup-node@v4
if: startsWith(matrix.config.name, 'Ubuntu_Latest_GCC')
run: |
sudo apt-get update
sudo apt-get install cmake
cmake --version
gcc --version
- name: Install dependencies on macos
uses: actions/setup-node@v4
if: startsWith(matrix.config.os, 'macos')
run: |
brew install cmake
Expand Down

0 comments on commit d45ac26

Please sign in to comment.