2022-06-22 02:49:31 +02:00
|
|
|
name: Build and upload artifact
|
|
|
|
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Install depends
|
2022-10-16 04:16:19 +02:00
|
|
|
run: sudo apt-get install -y mingw-w64 clang && rustup target add x86_64-pc-windows-gnu
|
2022-06-22 02:49:31 +02:00
|
|
|
- name: Make
|
2022-10-16 04:15:46 +02:00
|
|
|
run: make dist-no-7z -j
|
2022-06-22 02:49:31 +02:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: dist
|
|
|
|
path: out/
|