Skip to content

Commit

Permalink
try release-pipeline fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmeyer committed Sep 3, 2024
1 parent d6b7da8 commit 26f89e2
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/linux-build-clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Install Package Dependencies
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/linux-build-gcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Install Package Dependencies
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/macos-build-arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Set up ARM64 environment
run: sudo softwareupdate --install-rosetta --agree-to-license
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/macos-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Install Package Dependencies
run: brew install cmake nasm ninja
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ jobs:
# Windows
build_windows_clang:
needs:
- cut-release
name: "🖥️ Windows"
uses: ./.github/workflows/windows-build-clang.yaml
with:
Expand All @@ -55,6 +57,8 @@ jobs:

# Linux
build_linux_clang:
needs:
- cut-release
name: "🐧 Linux"
uses: ./.github/workflows/linux-build-clang.yaml
with:
Expand All @@ -65,6 +69,8 @@ jobs:

# macOS
build_macos_intel:
needs:
- cut-release
name: "🍎 MacOS"
uses: ./.github/workflows/macos-build.yaml
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/windows-build-clang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Install NASM
# TODO - Simplify this with just the first command once choco 2.0 rolls out everywhere
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/windows-build-msvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true

- name: Install NASM
# TODO - Simplify this with just the first command once choco 2.0 rolls out everywhere
Expand Down

0 comments on commit 26f89e2

Please sign in to comment.