Skip to content

Commit

Permalink
Attempt to update versions on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aardappel committed Jul 13, 2024
1 parent 9109889 commit 1caf35b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
cc: clang-14
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 17
node-version: 18
- name: apt update
run: sudo apt-get -o Acquire::Retries=3 update
- name: install opengl
Expand All @@ -39,7 +39,7 @@ jobs:
- name: test
run: bin/lobster tests/unittest.lobster
- name: upload build artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: Linux Lobster binary ${{ matrix.cxx }}
path: bin/lobster
Expand All @@ -64,7 +64,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.3
uses: microsoft/setup-msbuild@v2
- name: build
working-directory: dev/lobster
run: msbuild.exe lobster.sln /p:Configuration=Release /p:Platform=x64
Expand All @@ -73,7 +73,7 @@ jobs:
- name: test lsp
run: cd dev/lsp && npm install && npm test
- name: upload build artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: Windows Lobster binary
path: bin/lobster.exe
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
npm install
npm test
- name: upload build artifacts
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: bin/lobster
Expand All @@ -115,9 +115,10 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: 'zulu'
# Now we're first going to build the native Linux exe, so we can generate C++ code.
# Without engine should speed this up.
- name: cmake
Expand All @@ -137,7 +138,7 @@ jobs:
name: Build Wasm (on Linux)
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v1
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.3
uses: microsoft/setup-msbuild@v2
- name: build
working-directory: dev/lobster
run: msbuild.exe lobster.sln /p:Configuration=Release /p:Platform=x64
Expand Down

0 comments on commit 1caf35b

Please sign in to comment.