Skip to content

Commit

Permalink
Test the 'main' pipeline for XT (#4476)
Browse files Browse the repository at this point in the history
1. Add a couple of consts to Parameter to make a change
2. Update the README
  • Loading branch information
baconpaul authored May 4, 2021
1 parent b94db5a commit fa12ccb
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 14 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Surge XT

**If you are a musician looking to use Surge, please download the appropriate binary
[from our website](https://surge-synthesizer.github.io). The Surge developer team makes regular releases for all supported platforms.**

**If you are a developer looking to compile a stable production version of Surge, please do not
use the main branch; instead use a release tag (such as `release_1.9.0`) or branch (such as
`release/1.9.0`). Surge is undergoing substantial
development right now, and the `main` branch is currently an
incomplete alpha version for our fall 2021 release.**


CI: [![CI Build Status](https://dev.azure.com/surge-synthesizer/surge/_apis/build/status/surge-synthesizer.surge?branchName=main)](https://dev.azure.com/surge-synthesizer/surge/_build/latest?definitionId=2&branchName=main)
Release: [![Release Build Status](https://dev.azure.com/surge-synthesizer/surge/_apis/build/status/surge-synthesizer.releases?branchName=master)](https://dev.azure.com/surge-synthesizer/surge/_build/latest?definitionId=1&branchName=master)
Release-XT: [![Release-XT Build Status](https://dev.azure.com/surge-synthesizer/surge/_apis/build/status/surge-synthesizer.releases-xt?branchName=master)](https://dev.azure.com/surge-synthesizer/surge/_build/latest?definitionId=13&branchName=master)
Expand All @@ -10,8 +20,6 @@ Claes chose to release a partially completed version of Surge 1.6 under GPL3, an
of developers have been improving it since. You can learn more about the team at https://surge-synth-team.org/ or
connect with us on [Discord](https://raw.githubusercontent.com/surge-synthesizer/surge-synthesizer.github.io/master/_includes/discord_invite_link).

**If you are a musician only looking to use Surge, please download the appropriate binary
[from our website](https://surge-synthesizer.github.io). The Surge developer team makes regular releases for all supported platforms.**

If you would also like to participate in discussions, testing and design of Surge, we have
details below and also in [the contributors section of the Surge website](https://surge-synthesizer.github.io/#contributors).
Expand Down
11 changes: 3 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,15 +266,10 @@ jobs:
# remove refs/heads/
export BRANCH="${BUILD_SOURCEBRANCH/refs\/heads\/}"
if [[ $BRANCH =~ ^xt-alpha$ ]]; then
echo "Launching the XT Release Build"
. $AGENT_TEMPDIRECTORY/notify-xt-releases.sh $BRANCH
if ! [[ $BRANCH =~ ^(main|release-xt/.+)$ ]]; then
exit
fi
if ! [[ $BRANCH =~ ^(main|release/.+)$ ]]; then
exit
fi
. $AGENT_TEMPDIRECTORY/notify-releases.sh $BRANCH
echo "Launching the XT Release Build"
. $AGENT_TEMPDIRECTORY/notify-xt-releases.sh $BRANCH
displayName: Notify Releases
4 changes: 2 additions & 2 deletions src/common/Parameter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1771,9 +1771,9 @@ const char *Parameter::get_full_name()
return fullname;
}

const char *Parameter::get_internal_name() { return name; }
const char *Parameter::get_internal_name() const { return name; }

const char *Parameter::get_storage_name() { return name_storage; }
const char *Parameter::get_storage_name() const { return name_storage; }

char *Parameter::get_storage_value(char *str)
{
Expand Down
4 changes: 2 additions & 2 deletions src/common/Parameter.h
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@ class Parameter
const char *get_name();
const char *get_full_name();
void set_name(const char *n); // never change name_storage as it is used for storage/recall
const char *get_internal_name();
const char *get_storage_name();
const char *get_internal_name() const;
const char *get_storage_name() const;
const wchar_t *getUnit() const;
void get_display(char *txt, bool external = false, float ef = 0.f);
enum ModulationDisplayMode
Expand Down

0 comments on commit fa12ccb

Please sign in to comment.