binary_artifact.yml: add prebuilding of vup.exe and vdoctor.exe while making releases

pull/7695/head
Delyan Angelov 2020-12-29 21:51:12 +02:00
parent b28b41d069
commit 468c37e186
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 18 additions and 3 deletions

View File

@ -17,7 +17,11 @@ jobs:
- name: Compile - name: Compile
env: env:
CC: ${{ matrix.compiler }} CC: ${{ matrix.compiler }}
run: make && ./v -cc $CC -o v -prod cmd/v run: |
make -j4
./v -cc $CC -o v -prod cmd/v
./v -prod cmd/tools/vup.v
./v -prod cmd/tools/vdoctor.v
- name: Create artifact - name: Create artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
@ -43,7 +47,11 @@ jobs:
- name: Compile - name: Compile
env: env:
CC: ${{ matrix.compiler }} CC: ${{ matrix.compiler }}
run: make && ./v -cc $CC -o v -prod cmd/v run: |
make -j4
./v -cc $CC -o v -prod cmd/v
./v -prod cmd/tools/vup.v
./v -prod cmd/tools/vdoctor.v
- name: Create artifact - name: Create artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
@ -65,7 +73,10 @@ jobs:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- uses: msys2/setup-msys2@v2 - uses: msys2/setup-msys2@v2
- name: Compile - name: Compile
run: ./make.bat run: |
.\make.bat
.\v.exe cmd\tools\vup.v
.\v.exe cmd\tools\vdoctor.v
- name: Create artifact - name: Create artifact
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
@ -124,6 +135,10 @@ jobs:
chmod 755 v || true chmod 755 v || true
chmod 755 v.exe || true chmod 755 v.exe || true
chmod 755 thirdparty/tcc/tcc.exe || true chmod 755 thirdparty/tcc/tcc.exe || true
chmod 755 cmd/tools/vup || true
chmod 755 cmd/tools/vup.exe || true
chmod 755 cmd/tools/vdoctor || true
chmod 755 cmd/tools/vdoctor.exe || true
cd .. cd ..
zip -r9 --symlinks ../v_${{ matrix.version }}.zip v/* zip -r9 --symlinks ../v_${{ matrix.version }}.zip v/*
cd .. cd ..