Compare commits
2 Commits
prerelease
...
prerelease
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4a1ed23f96 | ||
|
|
eb36d02fcb |
21
.github/workflows/release.yml
vendored
21
.github/workflows/release.yml
vendored
@@ -105,9 +105,17 @@ jobs:
|
||||
with:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install build tools
|
||||
run: choco install winflexbison -y
|
||||
shell: pwsh
|
||||
- name: Install MSYS2 and build tools
|
||||
uses: msys2/setup-msys2@v3
|
||||
with:
|
||||
update: true
|
||||
install: >
|
||||
mingw-w64-x86_64-toolchain
|
||||
mingw-w64-x86_64-gmp
|
||||
mingw-w64-x86_64-make
|
||||
mingw-w64-x86_64-flex
|
||||
mingw-w64-x86_64-bison
|
||||
shell: msys2 {0}
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4
|
||||
@@ -123,9 +131,8 @@ jobs:
|
||||
|
||||
- name: Build with MinGW
|
||||
run: |
|
||||
conan install .
|
||||
conan build .
|
||||
shell: pwsh
|
||||
make
|
||||
shell: msys2 {0}
|
||||
|
||||
- name: Package
|
||||
run: |
|
||||
@@ -133,7 +140,7 @@ jobs:
|
||||
$ARCH = if ([Environment]::Is64BitOperatingSystem) { 'x64' } else { 'x86' }
|
||||
$FOLDER = "chloride-$TAG-windows-$ARCH"
|
||||
$ZIP = "$FOLDER.zip"
|
||||
Rename-Item build\bin $FOLDER
|
||||
Rename-Item bin $FOLDER
|
||||
Copy-Item LICENSE.txt $FOLDER
|
||||
Compress-Archive -Path $FOLDER -DestinationPath $ZIP
|
||||
echo "TAR_NAME=$ZIP" >> $env:GITHUB_ENV
|
||||
|
||||
Reference in New Issue
Block a user