Skip to content

Commit

Permalink
ci: drop the mkdir && cd dance
Browse files Browse the repository at this point in the history
The meson build system can create and change into the directory on its
own. Drop the manual steps.

Silly copy/paste left over from another project this file originates.

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
  • Loading branch information
evelikov authored and gregkh committed Oct 16, 2024
1 parent 5827abb commit da218a4
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ jobs:
- name: configure
run: |
mkdir build && cd build
meson setup --native-file ../build-dev.ini . ..
meson setup --native-file build-dev.ini build
- name: build
run: meson compile -C build
Expand All @@ -79,8 +78,7 @@ jobs:
if: ${{ matrix.crossfile != '' }}
run: |
cp .github/cross-files/${{ matrix.crossfile }} cross.ini
mkdir build32 && cd build32
meson setup --native-file ../build-dev.ini --cross-file ../cross.ini . ..
meson setup --native-file build-dev.ini --cross-file cross.ini build32
- name: build (32bit)
if: ${{ matrix.crossfile != '' }}
Expand Down

0 comments on commit da218a4

Please sign in to comment.