File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1616 cmake -B build
1717 cmake --build build --config Release --target axslcc
1818 - name : Upload
19- uses : actions/upload-artifact@v5
19+ uses : actions/upload-artifact@v6
2020 with :
2121 path : ./build/src/Release/axslcc.exe
2222 name : axslcc-win64
3030 cmake -B build -DCMAKE_BUILD_TYPE=Release
3131 cmake --build build --config Release --target axslcc
3232 - name : Upload
33- uses : actions/upload-artifact@v5
33+ uses : actions/upload-artifact@v6
3434 with :
3535 path : ./build/src/axslcc
3636 name : axslcc-linux
4949 cmake --build build --config Release --target axslcc
5050 lipo -info ./build/src/axslcc
5151 - name : Upload
52- uses : actions/upload-artifact@v5
52+ uses : actions/upload-artifact@v6
5353 with :
5454 path : ./build/src/axslcc
5555 name : axslcc-osx-arm64
6969 cmake --build build --config Release --target axslcc
7070 lipo -info ./build/src/axslcc
7171 - name : Upload
72- uses : actions/upload-artifact@v5
72+ uses : actions/upload-artifact@v6
7373 with :
7474 path : ./build/src/axslcc
7575 name : axslcc-osx-x64
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ It uses [glslang](https://github.com/KhronosGroup/glslang) for parsing GLSL and
99
1010## ChangeLog
1111
12+ ### 3.3.1
13+
14+ - Use debian-11 do build linux executable
15+
1216### 3.3.0
1317
1418- Write sc size into binary header
Original file line number Diff line number Diff line change 7777//
7878// 3.2.0 Unify and re-enumerate vertex input & uniform variable types
7979// 3.3.0 Write sc size into binary header
80+ // 3.3.1 Use debian-11 to build linux
8081//
8182
8283/* *
135136
136137#define AXSLCC_VERSION_MAJOR 3
137138#define AXSLCC_VERSION_MINOR 3
138- #define AXSLCC_VERSION_REVISION 0
139+ #define AXSLCC_VERSION_REVISION 1
139140
140141using namespace axslc ;
141142
You can’t perform that action at this time.
0 commit comments