mirror of
https://github.com/libsm64/libsm64.git
synced 2025-01-22 15:43:11 -05:00
Build test program; upload binaries
This commit is contained in:
parent
c70f20b6a9
commit
4cb4ec4276
1 changed files with 19 additions and 17 deletions
36
.github/workflows/main.yml
vendored
36
.github/workflows/main.yml
vendored
|
@ -22,29 +22,31 @@ jobs:
|
|||
sudo apt-get update -y -qq
|
||||
sudo apt-get install libsdl2-dev libglew-dev
|
||||
|
||||
- name: Print Folder Structure
|
||||
if: runner.os == 'Linux'
|
||||
run: ls -l
|
||||
#- name: Print Folder Structure
|
||||
# if: runner.os == 'Linux'
|
||||
# run: ls -l
|
||||
|
||||
- name: Linux - Build Base Binary
|
||||
if: runner.os == 'Linux'
|
||||
run: make
|
||||
|
||||
- name: Print Folder Structure
|
||||
if: runner.os == 'Linux'
|
||||
run: |
|
||||
ls -l
|
||||
ls -l ./build
|
||||
ls -l ./dist
|
||||
make lib
|
||||
make test
|
||||
|
||||
#- name: Linux - Upload Build
|
||||
# uses: actions/upload-artifact@v3
|
||||
#- name: Print Folder Structure
|
||||
# if: runner.os == 'Linux'
|
||||
# with:
|
||||
# name: sort_cuda
|
||||
# path: |
|
||||
# ./dist/libsm64.h
|
||||
# ./dist/libsm64.so
|
||||
# run: |
|
||||
# ls -l
|
||||
# ls -l ./build
|
||||
# ls -l ./dist
|
||||
|
||||
- name: Linux - Upload Build
|
||||
uses: actions/upload-artifact@v3
|
||||
if: runner.os == 'Linux'
|
||||
with:
|
||||
name: libsm64
|
||||
path: |
|
||||
./dist
|
||||
./build
|
||||
|
||||
#Release:
|
||||
# name: "Snapshot Release"
|
||||
|
|
Loading…
Reference in a new issue