Skip to content

Commit

Permalink
uses outside of steps will use workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aadnekar committed Dec 14, 2023
1 parent f789937 commit 5f95091
Showing 1 changed file with 12 additions and 25 deletions.
37 changes: 12 additions & 25 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,18 @@ on:

jobs:
build_on_windows:
runs-on: windows-latest
steps:
- name: Build on Windows
uses: ./.github/workflows/build.yml
with:
runner: windows-latest

uses: ./.github/workflows/build.yml
with:
runner: windows-latest
build_on_mac_intel:
runs-on: macos-latest
steps:
- name: Build on Intel macOS
uses: ./.github/workflows/build.yml
with:
runner: macos-latest
uses: ./.github/workflows/build.yml
with:
runner: macos-latest
build_on_mac_apple_silicon:
runs-on: macos-latest-xlarge # [beta] / only available option for m1
steps:
- name: Build on Apple Sillicon macOS
uses: ./.github/workflows/build.yml
with:
runner: macos-latest-xlarge
uses: ./.github/workflows/build.yml
with:
runner: macos-latest-xlarge
build_on_ubuntu:
runs-on: ubuntu-latest
steps:
- name: Build on Linux (Ubuntu)
uses: ./.github/workflows/build.yml
with:
runner: ubuntu-latest
uses: ./.github/workflows/build.yml
with:
runner: ubuntu-latest

0 comments on commit 5f95091

Please sign in to comment.