Skip to content
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: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
run: |
apt-get update
apt-get install -y build-essential g++-11
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Build (Linux, LARGE_BIOMES=${{ matrix.biomes }})
run: |
make LARGE_BIOMES=${{ matrix.biomes }} ARCH=sm_89 CC=gcc-11 CXX=g++-11
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ github.event.repository.name }}.${{ github.run_id }}.linux_x86.biomes${{ matrix.biomes }}
path: ./main
Expand All @@ -36,7 +36,7 @@ jobs:
matrix:
biomes: [0, 1]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ilammy/msvc-dev-cmd@v1
- name: Install MSYS2 + Make
uses: msys2/setup-msys2@v2
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
shell: msys2 {0}
run: |
make LARGE_BIOMES=${{ matrix.biomes }} ARCH=sm_89
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ github.event.repository.name }}.${{ github.run_id }}.windows_x86.biomes${{ matrix.biomes }}
path: ./main.exe
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout repository contents
uses: actions/checkout@v1
uses: actions/checkout@v7

- name: Use action to check for CRLF endings
uses: erclu/check-crlf@master
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
run: |
apt-get update
apt-get install -y build-essential g++-11
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Build (Linux, LARGE_BIOMES=${{ matrix.biomes }})
run: |
make LARGE_BIOMES=${{ matrix.biomes }} ARCH=all CC=gcc-11 CXX=g++-11
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ github.event.repository.name }}.${{ github.run_id }}.linux_x86.${{ matrix.biome_name }}
path: ./main
Expand All @@ -47,7 +47,7 @@ jobs:
- biomes: 1
biome_name: "large_biomes"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: ilammy/msvc-dev-cmd@v1
- name: Install MSYS2 + Make
uses: msys2/setup-msys2@v2
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
shell: msys2 {0}
run: |
make LARGE_BIOMES=${{ matrix.biomes }} ARCH=all
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ github.event.repository.name }}.${{ github.run_id }}.windows_x86.${{matrix.biome_name}}
path: ./main.exe
Expand All @@ -100,15 +100,16 @@ jobs:
runs-on: ubuntu-latest
needs: [windows_cuda, linux_cuda]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Download all artifacts from previous jobs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: release-artifacts
merge-multiple: true
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
token: ${{secrets.RELEASE_TOKEN}}
files: release-artifacts/*
generate_release_notes: true

Loading