Skip to content

Commit

Permalink
v9.4 (#7050)
Browse files Browse the repository at this point in the history
- CI | Armbian: Fix rebase syntax and remove obsolete workaround attempts for failing s5p6818 buids: This is now fixed via Armbian patch.
  • Loading branch information
MichaIng authored Apr 28, 2024
1 parent 93844ba commit 7cdb014
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/armbian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ jobs:
name: "${{ github.event.inputs.asset }} - ${{ github.event.inputs.branch }} - ${{ github.event.inputs.board }}"
runs-on: ubuntu-22.04
steps:
# https://github.com/actions/setup-python/tags
- uses: actions/setup-python@v5
with:
python-version: '3.x'
check-latest: true
- name: Clone Armbian repo
run: |
owner='${{ github.event.inputs.gitowner }}'
Expand All @@ -56,7 +51,7 @@ jobs:
elif [ "$branch" != 'dietpi' ]
then
git fetch origin dietpi
git rebase dietpi
git rebase origin/dietpi
fi
if [ "$owner" != 'armbian' ]
then
Expand All @@ -66,13 +61,11 @@ jobs:
elif [ "$branch" != 'main' ]
then
git fetch origin main
git rebase main
git rebase origin/main
fi
- name: Build asset
run: |
cd build
# Add python executable for legacy s5p6818 builds
sudo ln -sv python3 /usr/bin/python
./compile.sh '${{ github.event.inputs.asset }}' BRANCH='${{ github.event.inputs.branch }}' BOARD='${{ github.event.inputs.board }}'
- name: Upload
run: |
Expand Down

0 comments on commit 7cdb014

Please sign in to comment.