Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
qtc-de committed Sep 7, 2023
1 parent a9b0bd8 commit 0adfeac
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Build Frontend
name: Build rpv-web

on:
push:
branches:
- main
paths:
- frontend/**
- .github/workflows/build-frontend.yml
- src/**
- Makefile
- .github/workflows/build.yml

jobs:
build-rpv-web:
Expand Down
4 changes: 2 additions & 2 deletions src/main.v
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module main

import os
import rpv
import json
import vweb
import time
import rpv.win
import qtc_de.rpv
import qtc_de.rpv.win
import cli { Command, Flag }

// In the current state of vweb, we have to use globals to track our
Expand Down
2 changes: 1 addition & 1 deletion src/process-api.v
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module main

import os
import rpv
import vweb
import qtc_de.rpv


// refresh obtains RPC information for currently running processes and stores
Expand Down
4 changes: 2 additions & 2 deletions src/rpv.v
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module main

import rpv
import rpv.win
import qtc_de.rpv
import qtc_de.rpv.win

// For the json output generated by rpv-web we use v's native json module.
// The rpv structures contain to many non printable data that needs to be
Expand Down
2 changes: 1 addition & 1 deletion src/symbols-api.v
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module main

import rpv
import toml
import vweb
import x.json2
import qtc_de.rpv

// update_symbols allows callers to merge an rpv-web symbol file with
// the symbol file that is currently used by the server.
Expand Down
2 changes: 1 addition & 1 deletion src/utils.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module main

import rpv
import qtc_de.rpv

// get_process returns the RpvWebProcessInformation associated with
// the specified pid. The pid is looked up in the global process array.
Expand Down

0 comments on commit 0adfeac

Please sign in to comment.