Skip to content

Commit

Permalink
Fix args handling
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidokert committed Jul 5, 2024
1 parent 761f4ea commit 1a6370a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@ jobs:
- name: gn gen
run: |
cd src
gn gen out/Default --args-file=chrobalt/linux/args.gn
BUILD=out/Default
mkdir -p ${BUILD}
cp chrobalt/linux/args.gn ${BUILD}
gn gen ${BUILD}
- name: gn dump args
run: |
gn args --list --short ${BUILD}
- name: ninja base_unittests
run: |
cd src
Expand Down

0 comments on commit 1a6370a

Please sign in to comment.