2022-06-22 02:49:31 +02:00
|
|
|
name: Build and upload artifact
|
|
|
|
|
|
|
|
on: [ push, pull_request ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-12-10 23:47:16 +01:00
|
|
|
runs-on: ubuntu-20.04
|
2022-06-22 02:49:31 +02:00
|
|
|
steps:
|
2022-10-16 18:45:24 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-06-22 02:49:31 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Install depends
|
2022-12-06 14:58:44 +01:00
|
|
|
run: sudo apt-get install -y mingw-w64 clang
|
2022-06-22 02:49:31 +02:00
|
|
|
- name: Make
|
2022-10-16 18:38:40 +02:00
|
|
|
run: make dist-no-7z
|
2022-10-16 18:45:24 +02:00
|
|
|
- uses: actions/upload-artifact@v3
|
2022-06-22 02:49:31 +02:00
|
|
|
with:
|
|
|
|
name: dist
|
|
|
|
path: out/
|