22 Commits

Author SHA1 Message Date
3defa497b6 good action
All checks were successful
Linux arm64 / Build (push) Successful in 1m52s
2024-02-24 18:05:00 +01:00
a241589025 useless 2024-02-24 18:04:31 +01:00
911fe7cc10 pyth
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 18:00:53 +01:00
a6a71cb487 no
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 17:56:29 +01:00
3e8cf5e290 yesy esd
All checks were successful
Linux arm64 / Build (push) Successful in 2m6s
2024-02-24 17:53:54 +01:00
c62f114087 aaa
All checks were successful
Linux arm64 / Build (push) Successful in 11m36s
2024-02-24 17:41:50 +01:00
237c6d9981 frgh
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 17:40:04 +01:00
ece20e0e1f qzdfg
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 17:38:11 +01:00
3eecfa7df1 sdfg
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 17:36:05 +01:00
80bdf130dc action: fix package
All checks were successful
Linux arm64 / Build (push) Successful in 2m11s
2024-02-24 17:32:13 +01:00
4338fd3895 action: change defaut apt package
Some checks failed
Linux arm64 / Build (push) Failing after 16s
2024-02-24 17:31:42 +01:00
3a334b3227 action: cache build
All checks were successful
Linux arm64 / Build (push) Successful in 10m9s
2024-02-24 17:21:00 +01:00
186ca76345 action: gl
All checks were successful
Linux arm64 / Build (push) Successful in 2m28s
2024-02-24 16:23:16 +01:00
da3439cc03 action: bbbbbbbbbbb
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 16:20:23 +01:00
5a1f71e5c0 action: gl
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 16:19:38 +01:00
93d587d463 action: aaaaaaaaa
Some checks are pending
Linux arm64 / Build (push) Waiting to run
2024-02-24 16:18:49 +01:00
bad65f89d0 action: fix cache
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 16:04:25 +01:00
3c04810496 action: test
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 15:44:48 +01:00
ec538c1783 action: don't install apt
Some checks failed
Linux arm64 / Build (push) Has been cancelled
2024-02-24 15:26:04 +01:00
01bd4621b3 action: apt update
Some checks failed
Linux arm64 / Build (push) Failing after 34s
2024-02-24 13:22:27 +01:00
2ef4f091f1 action: fix file
Some checks failed
Linux arm64 / Build (push) Failing after 3m18s
2024-02-24 13:15:07 +01:00
bc4e1f1f35 action: cache apt packages
Some checks failed
Linux arm64 / Build (push) Failing after 0s
2024-02-24 13:13:51 +01:00
2 changed files with 15 additions and 27 deletions

View File

@@ -5,16 +5,25 @@ on: [push]
jobs: jobs:
Build: Build:
runs-on: ubuntu-latest runs-on: ubuntu-test
steps: steps:
- name: Install deps
run : |
apt update
apt install -y libsdl2-dev libglew-dev
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install opengl
run: |
apt update
apt install libgl1-mesa-dev -y
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.xmake
./build
./.xmake
key: 'ubuntu'
- name: Prepare Xmake - name: Prepare Xmake
uses: xmake-io/github-action-setup-xmake@v1 uses: xmake-io/github-action-setup-xmake@v1
with: with:

View File

@@ -1,21 +0,0 @@
MIT License
Copyright (c) 2024 Simon Pribylski
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.