Skip to content

Commit

Permalink
Add CQ3:VE link; test updated CI stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
dashodanger committed May 14, 2024
1 parent f30ffcd commit e0498f7
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
56 changes: 55 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Configure CMake MSVC
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -A Win32
- name: Build MSVC
run: cmake --build build --config ${{env.BUILD_TYPE}}
- uses: actions/upload-artifact@v3
Expand All @@ -38,3 +38,57 @@ jobs:
tools
obsidian.exe
retention-days: ${{env.RETENTION_DAYS}}
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libxft-dev libfontconfig1-dev
- name: Configure CMake Ubuntu
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build Ubuntu
run: cmake --build build --config ${{env.BUILD_TYPE}}
- uses: actions/upload-artifact@v3
with:
name: obsidian-ubuntu
path: |
addons
data
engines
games
language
modules
ports
presets
scripts
theme
tools
obsidian
retention-days: ${{env.RETENTION_DAYS}}
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Configure CMake Ubuntu
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build Ubuntu
run: cmake --build build --config ${{env.BUILD_TYPE}}
- uses: actions/upload-artifact@v3
with:
name: obsidian-macos
path: |
addons
data
engines
games
language
modules
ports
presets
scripts
theme
tools
obsidian
retention-days: ${{env.RETENTION_DAYS}}
5 changes: 5 additions & 0 deletions modules/useful_links.lua
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ OB_MODULES["links_iwads"] =
label=_("Blasphemer (Heretic Replacement)"),
url="https://github.com/Catoptromancy/blasphemer",
},
{
name="url_cq3_vanilla",
label=_("Chex Quest 3: Vanilla Edition"),
url="https://melodic-spaceship.neocities.org/chex3v",
},
{
name="url_hacx",
label=_("HacX 1.2"),
Expand Down

0 comments on commit e0498f7

Please sign in to comment.