Skip to content

Commit

Permalink
Update build-x86.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chbinousamy committed Oct 17, 2023
1 parent f82db18 commit 8170dfe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure
run: ./configure --prefix=$PWD/bin
- name: make
run: make
- name: make distcheck
run: make distcheck
- name: install
run: CC=clang cmake -DCMAKE_INSTALL_PREFIX=./binaries .. && make install
- name: make install
run: make install
- name: Archive binaries
uses: actions/upload-artifact@v3
with:
name: binaries
path: ./binaries
path: ./bin

test:
needs: build
Expand All @@ -32,7 +32,7 @@ jobs:
with:
name: binaries
- run: |
unzip binaries.zip
unzip bin.zip
ls
- name: test vcan
run: |
Expand Down

0 comments on commit 8170dfe

Please sign in to comment.