Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatongo committed Mar 5, 2024
1 parent 598e7e3 commit d9664da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: NOIR CI
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
run-chroot-script:
Expand All @@ -33,6 +33,7 @@ jobs:
- name: Extract the tarball
run: |
sudo mkdir -p /chroot/
sudo tar xzf chroot.tar.gz -C /chroot/
echo "NOIR chroot extracted to /chroot/"
Expand All @@ -43,7 +44,7 @@ jobs:
- name: Enter Chroot and Run Script
run: |
sudo chroot /chroot /bin/bash -c "export KISS_PATH=/root/main/core:/root/main/extra; cd /var/db/kiss/installed && kiss build *"
sudo chroot /chroot /bin/sh -c "export KISS_PATH=/root/main/core:/root/main/extra; cd /var/db/kiss/installed && kiss build *"
- name: Check Exit Status
id: check_status
Expand Down

0 comments on commit d9664da

Please sign in to comment.