Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
niley7464 committed Apr 26, 2024
1 parent af26f2e commit bdc9ccc
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/tizen-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
pull_request:
branches: [ main ]

env:
TIZEN_STUDIO_URL: "http://download.tizen.org/sdk/Installer/tizen-studio_5.1/web-cli_Tizen_Studio_5.5_ubuntu-64.bin"

jobs:
build:
runs-on: ubuntu-20.04
Expand All @@ -13,9 +16,14 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: -${{ github.event.pull_request.commits }}
- name: Build Tizen app
uses: sourcetoad/[email protected]
with:
project-dir: ${{ github.workspace }}/Tizen.web/ImageClassificationOffloading
author-key: "key"
author-password: "pwatleast8word"
- name: Install Tizen Studio
run: |
curl $TIZEN_STUDIO_URL --output-dir ${{ github.workspace }}
chmod a+x ${{ github.workspace }}/web-cli_Tizen_Studio_5.5_ubuntu-64.bin
.${{ github.workspace }}/web-cli_Tizen_Studio_5.5_ubuntu-64.bin --accept-license
- name: make cert and build
shell: bash
run: |
export PATH=$PATH:${{ github.workspace }}/tizen-studio/tools/ide/bin
tizen certificate -a MyTizen -p 1234 -c KR -s Seoul -ct Gangnamgu -o Tizen –u Development -n "Gildong Hong" -e [email protected] -f mycert
tizen build-app ${{ github.workspace }}/Tizen.web/ImageClassificationOffloading

0 comments on commit bdc9ccc

Please sign in to comment.