rufus/.github/workflows/mingw.yml

94 lines
2.3 KiB
YAML
Raw Normal View History

2021-07-28 23:49:17 +00:00
name: MinGW
on:
push:
paths-ignore:
- '.gitignore'
- '.gitattributes'
- 'res/**'
- '**.cmd'
- '**.md'
- '**.rc'
- '**.sh'
- '**.txt'
- '**.xml'
pull_request:
branches: [master]
2021-07-28 23:49:17 +00:00
paths-ignore:
- '.gitignore'
- '.gitattributes'
- 'res/**'
- '**.cmd'
- '**.md'
- '**.rc'
- '**.sh'
- '**.txt'
- '**.xml'
jobs:
2021-09-03 23:55:59 +00:00
MinGW-Build:
2021-07-28 23:49:17 +00:00
runs-on: windows-latest
strategy:
matrix:
include:
- { sys: mingw64, env: x86_64 }
- { sys: mingw32, env: i686 }
defaults:
run:
shell: msys2 {0}
steps:
- name: Install MinGW
uses: msys2/setup-msys2@v2
with:
2021-09-07 00:01:56 +00:00
msystem: ${{ matrix.sys }}
2021-07-28 23:49:17 +00:00
update: true
install: >-
2021-09-07 00:01:56 +00:00
mingw-w64-${{ matrix.env }}-toolchain
2021-07-28 23:49:17 +00:00
base-devel
autotools
2021-07-28 23:49:17 +00:00
git
upx
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: recursive
- name: Set ALPHA
id: set_alpha
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
run: echo "::set-output name=option::--enable-alpha"
- name: Set BETA
id: set_beta
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'BETA') }}
run: echo "::set-output name=option::--enable-beta"
2021-07-28 23:49:17 +00:00
- name: Build
run: |
./configure --disable-debug ${{ steps.set_alpha.outputs.option }} ${{ steps.set_beta.outputs.option }}
2021-07-28 23:49:17 +00:00
make -j4
mv ./src/rufus.exe .
strip ./rufus.exe
upx --lzma --best ./rufus.exe
- name: Display SHA-256
run: sha256sum ./rufus.exe
- name: Upload to VirusTotal
if: ${{ matrix.env == 'i686' && github.event_name == 'push' }}
run: |
2021-09-07 00:01:56 +00:00
curl --request POST --url https://www.virustotal.com/vtapi/v2/file/scan --form apikey=${{ secrets.VIRUSTOTAL_API_KEY }} --form file=@./rufus.exe
curl --request POST --url https://www.virustotal.com/api/v3/monitor/items --header 'x-apikey: ${{ secrets.VIRUSTOTAL_API_KEY }}' --form path='/rufus.exe' --form file=@./rufus.exe
2021-07-28 23:49:17 +00:00
- name: Upload artifacts
if: ${{ matrix.env == 'i686' && github.event_name == 'push' }}
2021-07-28 23:49:17 +00:00
uses: actions/upload-artifact@v2
with:
name: MinGW
path: ./*.exe