msaltnet / T.Viewer

Cross Platform Tizen Log Viewer
https://blog.msalt.net/313
MIT License
15 stars 7 forks source link

[PoC] Tab 10개 추가 #3

Closed msaltnet closed 4 years ago

msaltnet commented 4 years ago

Viewer tab 10개 추가하고, 단순 메세지 출력 동작 확인

msaltnet commented 4 years ago

리눅스 빌드 추가, 릴리스 추가하기 .travis.xml

os:
  - linux
  - windows

branches:
  only:
    - master
    - /releases\/.+/

install:
  - npm install

script:
  - npm run lint && npm run build
  - | 
    if [ "$TRAVIS_OS_NAME" == "linux" ]; then
      npm run dist:linux
    fi
    if [ "$TRAVIS_OS_NAME" == "windows" ]; then
      npm run dist:win
    fi

deploy:
  provider: releases
  skip_cleanup: true
  api_key: 
    secure:
  file_glob: true
  file: 
    - "dist/*.AppImage"
    - "dist/*.exe"
  draft: true
  on:
    branch: master

리눅스 추가하기 vue.config.js

        linux: {
          target: [
            {
              target: 'AppImage',
              arch: [
                'x64',
              ],
            },
          ],
        },
      },
msaltnet commented 4 years ago

Done https://github.com/msaltnet/T.Viewer/commit/1c6e0d8ed69805cd5647566151f97eb2a27251db