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 8, 2023
1 parent 186af03 commit cfefd6e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
run: |
sudo apt install -y gcc-mingw-w64
- name: Build rpv-web
- name: Build rpv-web-x64
run: |
v install qtc-de.rpv
make
- name: Archive rpv-web
- name: Archive rpv-web-x64
uses: actions/upload-artifact@v3
with:
name: rpv-web-x64
Expand All @@ -54,22 +54,23 @@ jobs:
run: |
sudo apt install -y gcc-mingw-w64
- name: Build rpv-web
- name: Build rpv-web-x86
run: |
cp ~/.vmodules/qtc_de/rpv/alternate/default-x86.v ~/.vmodules/qtc_de/rpv/internals/rpc-internal-structs.v
v install qtc-de.rpv
make rpv-web-x86
- name: Archive rpv-web
- name: Archive rpv-web-x86
uses: actions/upload-artifact@v3
with:
name: rpv-web-x86
path: rpv-web-x86.exe

build-frontend:
runs-on: ubuntu-latest
needs: build-rpv-web-x86
needs: build-rpv-web-x64
needs:
- build-rpv-web-x86
- build-rpv-web-x64

steps:
- name: Checkout ${{ github.event.repository.name }}
Expand Down

0 comments on commit cfefd6e

Please sign in to comment.