Skip to content

Commit

Permalink
bump 12 version
Browse files Browse the repository at this point in the history
  • Loading branch information
ellraiser committed Mar 20, 2024
1 parent 7d98d78 commit d3b4f15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
uses: actions/checkout@v4
- name: Download Love
run: |
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1339160862/zip"
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1343144902/zip"
7z x love12.zip -o*
7z x love12/love-macos.zip -o*
- name: Run Test Suite
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
powershell.exe mesa\systemwidedeploy.cmd 1
- name: Download Love
run: |
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1339169120/zip"
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1343144099/zip"
7z x love12.zip -o*
7z x love12/love-12.0-win64.zip -o*
- name: Run Tests (opengl)
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
uses: actions/checkout@v4
- name: Download Love
run: |
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1339164115/zip"
curl -L -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" --output love12.zip --url "https://api.github.com/repos/love2d/love/actions/artifacts/1343139265/zip"
7z x love12.zip -o*
mv love12/love-*.AppImage love12/love12.AppImage
ls love12
Expand Down
4 changes: 2 additions & 2 deletions classes/TestMethod.lua
Original file line number Diff line number Diff line change
Expand Up @@ -386,15 +386,15 @@ TestMethod = {
return false
end,

---@method - TestMethod:isLuaVersion()
-- @method - TestMethod:isLuaVersion()
-- @desc - checks for a specific Lua version (or list of versions)
-- @param {number} - the minimum Lua version to check against
-- @return {boolean} - returns true if the current Lua version is at least the given version
isAtLeastLuaVersion = function(self, version)
return version >= love.test.lua_version
end,

---@method - TestMethod:isLuaJITEnabled()
-- @method - TestMethod:isLuaJITEnabled()
-- @desc - checks if LuaJIT is enabled
-- @return {boolean} - returns true if LuaJIT is enabled
isLuaJITEnabled = function(self)
Expand Down

0 comments on commit d3b4f15

Please sign in to comment.