Skip to content

Commit

Permalink
add .a's to builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerboa-app committed Jan 16, 2024
1 parent 7687a29 commit 084a098
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ jobs:
./build.sh -w -d -r -t
mkdir windowsbuild
cp build/libHop.a windowsbuild/
cp build/libjGL.a windowsbuild/
cp build/*.dll windowsbuild/
cd windowsbuild && zip -r ../windowsbuild.zip * && cd ..
mkdir demos
Expand Down Expand Up @@ -186,6 +187,7 @@ jobs:
./build.sh -o -d -r -t
mkdir macosbuild
cp build/libHop.a macosbuild/
cp build/libjGL.a macosbuild/
cd macosbuild && zip -r ../macosbuild.zip * && cd ..
mkdir demos
cp -r build/PerlinWorld demos/
Expand Down Expand Up @@ -355,6 +357,7 @@ jobs:
run: |
unzip linuxbuild.zip
ls
mkdir tests/regression/user/include/
cp *.a tests/regression/user/
cp -r headers/* tests/regression/user/include/
cd tests/regression/user
Expand Down
1 change: 0 additions & 1 deletion tests/regression/user-mingw/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ std::string fixedLengthNumber(double x, unsigned length)
return dtrunc;
}


std::shared_ptr<jGL::jGLInstance> jGLInstance;

#endif /* MAIN_H */

0 comments on commit 084a098

Please sign in to comment.