Skip to content

Commit

Permalink
ci(github): fix integration action
Browse files Browse the repository at this point in the history
  • Loading branch information
Fuwn committed Jan 24, 2024
1 parent 3c52ed4 commit 8ebc071
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
- name: システム・Package Lists
run: sudo apt-get update
- name: システム・Dependencies
run: sudo apt-get install -y build-essential libimlib2-dev libxft-dev libfribidi-dev libxinerama-dev libx11-xcb-dev libxcb-res0-dev
run: |
sudo apt-get install -y build-essential libimlib2-dev libxft-dev \
libfribidi-dev libxinerama-dev libx11-xcb-dev libxcb-res0-dev \
ninja-build
- name: システム・Compilation
run: make
run: ninja
4 changes: 2 additions & 2 deletions build.ninja
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ rule _options
echo "CC = ${CC}"

rule compile
command = ${CC} ${CFLAGS} -c ${in} -o ${out}
command = ${CC} -c ${in} -o ${out} ${CFLAGS}

rule link
command = ${CC} ${LDFLAGS} ${in} -o ${out}
command = ${CC} ${in} -o ${out} ${LDFLAGS}

build _options: _options
build _install: _install
Expand Down

0 comments on commit 8ebc071

Please sign in to comment.