Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

[-] Remove webserve and unused api #112

[-] Remove webserve and unused api

[-] Remove webserve and unused api #112

Workflow file for this run

name: GitHub Actions
on: [push]
jobs:
action-run:
runs-on: ubuntu-22.04
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "The ${{ github.workspace }} is now ready to test your code on the runner."
- run: ls ${{ github.workspace }}
- run: echo "start install Qt..."
- run: sudo apt update
- run: sudo apt install git
- run: sudo apt install libxcb-shape0-dev
- run: sudo apt install libxcb-xfixes0-dev
- run: sudo apt install libxdo-dev
- run: sudo apt install qt5-qmake
- run: sudo apt install qtdeclarative5-dev
- run: sudo apt install qtbase5-dev
- run: sudo apt install qml-module-qtqml
- run: sudo apt install qml-module-qtquick-controls
- run: sudo apt install qml-module-qtcharts
- run: sudo apt install qml-module-qtquick2
- run: sudo apt install qml-module-qtgraphicaleffects
- run: sudo apt install qml-module-qtquick-templates2
- run: sudo apt install qml-module-qtquick-controls
- run: sudo apt install qml-module-qtquick-dialogs
- run: sudo apt install qml-module-qtmultimedia
- run: echo "end install Qt..."
- run: echo "start install Rust..."
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-06-10
override: true
- run: echo "end install Rust..."
- run: echo "start build..."
- name: Install Cargo
uses: actions-rs/cargo@v1
with:
command: build
- run: echo "end build..."
- run: echo "🍏 This job's status is ${{ job.status }}."