an-anime-game-launcher/.github/workflows/buildnup.yml

67 lines
1.5 KiB
YAML
Raw Normal View History

2022-08-26 04:25:10 +03:00
name: Build & Upload Launcher
on:
push:
branches: [ "main" ]
2022-08-26 12:53:36 +03:00
paths: [ "src/**" ]
2022-08-26 04:25:10 +03:00
pull_request:
branches: [ "main" ]
2022-08-26 12:53:36 +03:00
paths: [ "src/**" ]
2022-09-24 19:04:27 +03:00
workflow_dispatch:
2022-08-26 04:25:10 +03:00
env:
CARGO_TERM_COLOR: always
jobs:
build_and_upload:
2022-08-26 04:29:59 +03:00
runs-on: ubuntu-22.04
2022-08-26 04:25:10 +03:00
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
2022-08-26 04:29:59 +03:00
- name: Install Deps
2022-08-26 04:33:03 +03:00
run: sudo apt install -y libgtk-4-1 libgtk-4-dev libadwaita-1-0 libadwaita-1-dev
2022-08-26 04:25:10 +03:00
- name: Build
run: cargo build --release --verbose
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
with:
name: Launcher
path: target/release/anime-game-launcher
2022-09-24 19:02:28 +03:00
build_and_upload_exp:
runs-on: ubuntu-latest
2022-09-24 19:09:05 +03:00
needs: build_and_upload
2022-09-24 19:10:03 +03:00
if: ${{ always() && needs.build_and_upload.result == 'failure' }}
2022-09-24 19:02:28 +03:00
container:
2022-09-24 19:30:56 +03:00
image: ubuntu:devel
2022-09-24 19:02:28 +03:00
env:
DEBIAN_FRONTEND: noninteractive
steps:
- name: Install Deps
run: |
apt update
2022-09-24 19:38:54 +03:00
apt install -y libgtk-4-1 libgtk-4-dev libadwaita-1-0 libadwaita-1-dev git rustc rustfmt cargo curl openssl
2022-09-24 19:20:15 +03:00
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
2022-09-24 19:02:28 +03:00
- name: Build
run: cargo build --release --verbose
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
with:
name: Launcher
path: target/release/anime-game-launcher