Skip to content

Commit

Permalink
fix: build vib on ubuntu-latest directly
Browse files Browse the repository at this point in the history
  • Loading branch information
axtloss committed Aug 13, 2024
1 parent 9720e4e commit 1d23da6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
container:
image: ghcr.io/vanilla-os/pico:main

steps:
- uses: actions/checkout@v4
Expand All @@ -24,8 +22,8 @@ jobs:

- name: Install Build Dependencies
run: |
apt-get update
apt-get install -y libbtrfs-dev libdevmapper-dev pkg-config build-essential
sudo apt-get update
sudo apt-get install -y libbtrfs-dev libdevmapper-dev pkg-config build-essential
- name: Build vib
run: |
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container:
image: ghcr.io/vanilla-os/pico:main
permissions:
contents: write # to upload assets to releases
attestations: write # to upload assets attestation for build provenance
Expand All @@ -25,8 +23,8 @@ jobs:

- name: Install Build Dependencies
run: |
apt-get update
apt-get install -y libbtrfs-dev libdevmapper-dev pkg-config build-essential
sudo apt-get update
sudo apt-get install -y libbtrfs-dev libdevmapper-dev pkg-config build-essential
- name: Build
run: |
Expand Down

0 comments on commit 1d23da6

Please sign in to comment.