Browse Source

Start the builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/v2.4.2
falkTX 1 year ago
parent
commit
f1fc813e26
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 26 additions and 24 deletions
  1. +24
    -24
      .github/workflows/release.yml
  2. +2
    -0
      build.sh

+ 24
- 24
.github/workflows/release.yml View File

@@ -34,10 +34,10 @@ jobs:
shell: bash
run: |
./PawPaw/bootstrap-carla.sh macos && ./PawPaw/.cleanup.sh macos
#- name: Build macOS intel
#shell: bash
#run: |
#./build.sh macos
- name: Build macOS intel
shell: bash
run: |
./build.sh macos
#- uses: actions/upload-artifact@v2
#with:
#name: macOS intel package
@@ -67,10 +67,10 @@ jobs:
shell: bash
run: |
./PawPaw/bootstrap-carla.sh macos-universal && ./PawPaw/.cleanup.sh macos-universal
#- name: Build macOS universal
#shell: bash
#run: |
#./build.sh macos-universal
- name: Build macOS universal
shell: bash
run: |
./build.sh macos-universal
#- uses: actions/upload-artifact@v2
#with:
#name: macOS universal package
@@ -113,14 +113,14 @@ jobs:
shell: bash
run: |
./PawPaw/bootstrap-carla.sh win32 && ./PawPaw/.cleanup.sh win32
#- name: Build win32 cross-compiled
#shell: bash
#run: |
#./build.sh win32
#- uses: actions/upload-artifact@v2
#with:
#name: win32 installer
#path: Carla/*.zip
- name: Build win32 cross-compiled
shell: bash
run: |
./build.sh win32
- uses: actions/upload-artifact@v2
with:
name: win32 installer
path: Carla/*.zip

# linux with win64 cross-compilation
win64:
@@ -159,11 +159,11 @@ jobs:
shell: bash
run: |
./PawPaw/bootstrap-carla.sh win64 && ./PawPaw/.cleanup.sh win64
#- name: Build win64 cross-compiled
#shell: bash
#run: |
#./build.sh win64
#- uses: actions/upload-artifact@v2
#with:
#name: win64 installer
#path: Carla/*.zip
- name: Build win64 cross-compiled
shell: bash
run: |
./build.sh win64
- uses: actions/upload-artifact@v2
with:
name: win64 installer
path: Carla/*.zip

+ 2
- 0
build.sh View File

@@ -34,6 +34,8 @@ fi
make dist ${MAKE_ARGS} TESTING=true -j 1
make dist ${MAKE_ARGS} TESTING=true -j 1
make dist ${MAKE_ARGS} TESTING=true -j 1
make dist ${MAKE_ARGS} TESTING=true -j 1
make dist ${MAKE_ARGS} TESTING=true -j 1
make dist ${MAKE_ARGS} -j 1
popd



Loading…
Cancel
Save