Skip to content

Commit

Permalink
Fix CI script
Browse files Browse the repository at this point in the history
The CI script was tied to incorrect branch names.
This commit removes these restrictions.

Signed-off-by: Lukas Jünger <[email protected]>
  • Loading branch information
aut0 committed Jan 10, 2024
1 parent bd3b797 commit 507eae0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@ name: cmake

on:
push:
branches:
- 'main'
- 'dev**'
pull_request:
branches:
- 'main'

jobs:
build_ubuntu:
Expand All @@ -21,7 +16,7 @@ jobs:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get install qemu-user-static
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 507eae0

Please sign in to comment.