mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 01:29:43 +02:00
- For ALPHA builds we do a check version with the Welcome screen (if welcome screen is enabled). - A 'Check Online' in the About box provides a new route to check version - Check Version now passes CommitId and Build Date/Time to identify a version. To actually close the bug we need the javascript on the server page to put up informative messages.
21 lines
614 B
YAML
21 lines
614 B
YAML
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.9
|
|
- gcc-4.9
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -y libwxgtk3.0-dev libgtk2.0-dev
|
|
- git show -s --format="#define REV_LONG \"%H\"%n#define REV_TIME \"%cd\"%n" | tee ./src/RevisionIdent.h
|
|
- export CXX="g++-4.9" CC="gcc-4.9"
|
|
- FLAGS="-w -std=gnu++11"
|
|
- export CFLAGS="$CFLAGS $FLAGS"
|
|
- export CXXFLAGS="$CXXFLAGS $FLAGS"
|
|
- g++-4.9 --version
|
|
language:
|
|
- cpp
|
|
script:
|
|
- aclocal --install -I m4 && automake && ./configure && make
|