mirror of
https://github.com/13hannes11/toolbx-tuner.git
synced 2024-09-03 23:21:00 +02:00
add vendoring step
This commit is contained in:
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
@@ -8,16 +8,14 @@ name: CI
|
|||||||
jobs:
|
jobs:
|
||||||
rustfmt:
|
rustfmt:
|
||||||
name: Rustfmt
|
name: Rustfmt
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
|
||||||
components: rustfmt
|
components: rustfmt
|
||||||
- name: Create blank versions of configured file
|
- name: Create blank versions of configured file
|
||||||
run: echo -e "" >> src/config.rs
|
run: echo -e "" >> src/config.rs
|
||||||
@@ -26,13 +24,13 @@ jobs:
|
|||||||
|
|
||||||
flatpak:
|
flatpak:
|
||||||
name: Flatpak
|
name: Flatpak
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: bilelmoussaoui/flatpak-github-actions:gnome-45
|
image: bilelmoussaoui/flatpak-github-actions:gnome-45
|
||||||
options: --privileged
|
options: --privileged
|
||||||
steps:
|
steps:
|
||||||
- name: Install git-lfs
|
- name: Install pre-requisits
|
||||||
run: dnf update -y && dnf install -y git-lfs
|
run: dnf update -y && dnf install -y git-lfs cargo
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
@@ -42,6 +40,8 @@ jobs:
|
|||||||
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Devel.json
|
manifest-path: build-aux/org.kuchelmeister.ToolboxTuner.Devel.json
|
||||||
run-tests: true
|
run-tests: true
|
||||||
cache-key: flatpak-builder-${{ github.sha }}
|
cache-key: flatpak-builder-${{ github.sha }}
|
||||||
|
- name: Vendor dependencies
|
||||||
|
run: ./build-aux/dist-vendor.sh dist .
|
||||||
- name: ls
|
- name: ls
|
||||||
run: ls
|
run: ls
|
||||||
publish-prerelease:
|
publish-prerelease:
|
||||||
@@ -60,3 +60,4 @@ jobs:
|
|||||||
title: 'Latest Development Build'
|
title: 'Latest Development Build'
|
||||||
files: |
|
files: |
|
||||||
**/*.flatpak
|
**/*.flatpak
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user