Skip to content

Commit

Permalink
chore: bump Vib action to v0.6.2
Browse files Browse the repository at this point in the history
Signed-off-by: K.B.Dharun Krishna <[email protected]>
  • Loading branch information
kbdharun authored and mirkobrombin committed Apr 16, 2024
1 parent 3db5dd7 commit 6d64681
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/vib-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: vanilla-os/vib-gh-action@v0.3.2-2
- uses: vanilla-os/vib-gh-action@v0.6.2

- name: Build the Docker image
run: docker image build -f Containerfile --tag ghcr.io/vanilla-os/dev:main .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vib-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: vanilla-os/vib-gh-action@v0.3.2-2
- uses: vanilla-os/vib-gh-action@v0.6.2

- name: Build the Docker image
run: docker image build -f Containerfile --tag dev:validation .
Expand Down
75 changes: 39 additions & 36 deletions recipe.yml
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
base: ghcr.io/vanilla-os/pico:main
name: Vanilla Dev
singlelayer: false
labels:
maintainer: Vanilla OS Contributors
args:
DEBIAN_FRONTEND: noninteractive
runs:
- echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/01norecommends
id: vanilla-dev
stages:
- id: build
base: ghcr.io/vanilla-os/pico:main
singlelayer: false
labels:
maintainer: Vanilla OS Contributors
args:
DEBIAN_FRONTEND: noninteractive
runs:
- echo 'APT::Install-Recommends "0";' > /etc/apt/apt.conf.d/01norecommends

modules:
- name: packages-modules
type: includes
includes:
- modules/00-basics
- modules/01-vanilla-base-files
- modules/05-go
- modules/10-python
- modules/20-build-tools
- modules/30-gtk
- modules/40-rust
- modules/100-apx-gui-deps
modules:
- name: packages-modules
type: includes
includes:
- modules/00-basics.yml
- modules/01-vanilla-base-files.yml
- modules/05-go.yml
- modules/10-python.yml
- modules/20-build-tools.yml
- modules/30-gtk.yml
- modules/40-rust.yml
- modules/100-apx-gui-deps.yml

- name: host-spawn
type: shell
commands:
- wget https://github.com/1player/host-spawn/releases/download/1.5.0/host-spawn-x86_64
- mv host-spawn-x86_64 /usr/bin/host-spawn
- chmod +x /usr/bin/host-spawn
- name: host-spawn
type: shell
commands:
- wget https://github.com/1player/host-spawn/releases/download/1.5.0/host-spawn-x86_64
- mv host-spawn-x86_64 /usr/bin/host-spawn
- chmod +x /usr/bin/host-spawn

- name: cleanup
type: shell
commands:
- apt autoremove -y
- apt clean
- rm -rf /var/cache/*
- rm -rf /tmp/*
- rm -rf /var/tmp/*
- rm -rf /sources
- mkdir -p /var/cache/apt/archives/partial
- name: cleanup
type: shell
commands:
- apt autoremove -y
- apt clean
- rm -rf /var/cache/*
- rm -rf /tmp/*
- rm -rf /var/tmp/*
- rm -rf /sources
- mkdir -p /var/cache/apt/archives/partial

0 comments on commit 6d64681

Please sign in to comment.