Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade GitHub Actions versions, cleaned up workflow files #25

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,24 @@ jobs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2

- name: make setup
run: make setup

- name: make bin/app
run: make bin/app
- name: 'export binary'
uses: actions/upload-artifact@v2

- name: export binary
uses: actions/upload-artifact@v4
with:
name: app
path: bin/app

- name: make clean
run: make clean

- name: make bin/app CXX=g++
run: make bin/app CXX=g++

- name: make clean
run: make clean
8 changes: 7 additions & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,30 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: update apt
run: sudo apt-get update

- name: install raylib dependencies
run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev

- name: make setup
run: make setup

- name: make bin/app
run: make bin/app

- name: 'export binary'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: app
path: bin/app

- name: make clean
run: make clean

- name: make bin/app CXX=g++
run: make bin/app CXX=g++

- name: make clean
run: make clean
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
run: mingw32-make bin/app
shell: cmd

- name: 'export binary'
uses: actions/upload-artifact@v2
- name: export binary
uses: actions/upload-artifact@v4
with:
name: app.exe
path: bin/app.exe
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include
lib
bin
.idea
.idea
.DS_Store
Loading