Skip to content

Commit

Permalink
ci: disable --features gui until ubuntu-24.04 runner is available
Browse files Browse the repository at this point in the history
  • Loading branch information
cilki committed May 12, 2024
1 parent 82e07f3 commit ce522e8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
build-linux:
name: Build / ubuntu-latest (x86_64) / ${{ matrix.target }}
# Need ubuntu-24.04 for --features gui
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -42,7 +43,7 @@ jobs:
with:
use_cross: true
command: build
args: --release --target ${{ matrix.target }} --features gui
args: --release --target ${{ matrix.target }}

- uses: actions/upload-artifact@v4
with:
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,21 @@ cargo install goldboot
```
</details>

<details>
<summary>Github Releases</summary>

#### Install manually from Github releases

```sh
curl -o /usr/bin/goldboot https://github.com/fossable/goldboot/releases/download/v0.0.3/goldboot_<platform>
```

##### Dependencies
```sh
apt-get install -y libudev1 libgtk-4-1 libglib2.0-0
```
</details>

<details>
<summary>Github Actions</summary>

Expand Down

0 comments on commit ce522e8

Please sign in to comment.