Skip to content

Commit

Permalink
Clone c++-rewrite branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ThreeDeeJay committed Nov 16, 2023
1 parent 2516abd commit 8bda7c5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/Tagged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
}
steps:

- name: Checkout repository
uses: actions/[email protected]
- name: Clone DSOAL
run: git clone -b c++-rewrite https://github.com/kcat/dsoal.git .

- name: Clone latest OpenAL Soft commit
run: |
Expand All @@ -50,8 +50,9 @@ jobs:
- name: ${{matrix.config.name}} - Build DSOAL
run: |
cmake -B "${{github.workspace}}/build" -A ${{matrix.config.platform}}
cmake --build "${{github.workspace}}/build" --config ${{env.Configuration}}
cd build
cmake -A ${{matrix.config.platform}} ..
cmake --build . --config ${{env.Configuration}} --clean-first
- name: ${{matrix.config.name}} - Build OpenAL Soft
run: |
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/Untagged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Untagged build
on:
push:
branches:
- 'master'
- 'rewrite'
tags-ignore:
- '*.*.*'
paths-ignore:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
steps:

- name: Clone DSOAL
run: git clone https://github.com/kcat/dsoal.git .
run: git clone -b c++-rewrite https://github.com/kcat/dsoal.git .

- name: Clone OpenAL Soft
run: git clone https://github.com/kcat/openal-soft.git
Expand All @@ -57,8 +57,9 @@ jobs:
- name: ${{matrix.config.name}} - Build DSOAL
run: |
cmake -B "${{github.workspace}}/build" -A ${{matrix.config.platform}}
cmake --build "${{github.workspace}}/build" --config ${{env.Configuration}}
cd build
cmake -A ${{matrix.config.platform}} ..
cmake --build . --config ${{env.Configuration}} --clean-first
- name: ${{matrix.config.name}} - Build OpenAL Soft
run: |
Expand Down Expand Up @@ -135,7 +136,7 @@ jobs:
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{secrets.GITHUB_TOKEN}}"
automatic_release_tag: "latest"
automatic_release_tag: "rewrite"
prerelease: true
title: "[${{needs.Build.outputs.CurrentDate}}] DSOAL r${{needs.Build.outputs.DSOALCommitCount}}@${{needs.Build.outputs.DSOALCommitHashShort}} + OpenAL Soft r${{needs.Build.outputs.OpenALSoftCommitCount}}@${{needs.Build.outputs.OpenALSoftCommitHashShort}}"
files: "Release/*"

0 comments on commit 8bda7c5

Please sign in to comment.