mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
ASF V3.4 with ASF UI (#906)
* Add ASF UI as dependency * Correct CIs * Misc * Misc * Another attempt of fixing travis * And another one * Test monmon improvements * Test * Another test * More travis tests * And one more * Another test * More tests * More tests * More tests * Final code * Use deploy script for ASF UI * Misc * Kill obsolete code and bump version * Delete old asf-ui * Add new ASF-ui * Add UI.html
This commit is contained in:
committed by
GitHub
parent
b342b31298
commit
d0f32c8250
14
.travis.yml
14
.travis.yml
@@ -20,7 +20,6 @@ env:
|
||||
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
|
||||
- NET_CORE_VERSION: netcoreapp2.1
|
||||
- VARIANTS="generic linux-arm linux-x64 osx-x64 win-x64" # NOTE: When modifying variants, don't forget to update ASF_VARIANT definitions in SharedInfo.cs!
|
||||
|
||||
before_script:
|
||||
- |
|
||||
set -eu
|
||||
@@ -35,6 +34,19 @@ script:
|
||||
- |
|
||||
set -eu
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
||||
set +eu # This is needed to run below npm block on OSX
|
||||
fi
|
||||
|
||||
cd ASF-ui
|
||||
npm i --no-progress
|
||||
npm run-script deploy --no-progress
|
||||
cd ..
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
||||
set -eu # We no longer need +eu on OSX
|
||||
fi
|
||||
|
||||
dotnet build ArchiSteamFarm -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -o 'out/source' /nologo
|
||||
dotnet test ArchiSteamFarm.Tests -c "$CONFIGURATION" -f "$NET_CORE_VERSION" -o 'out/source' /nologo
|
||||
|
||||
|
||||
Reference in New Issue
Block a user