mirror of
https://github.com/vtnerd/monero-lws.git
synced 2024-11-17 01:37:55 +00:00
Fix build-ubuntu.yml and create actions on develop
This commit is contained in:
parent
33c665f351
commit
cdaf7dac92
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build-ubuntu.yml
vendored
6
.github/workflows/build-ubuntu.yml
vendored
|
@ -2,9 +2,9 @@ name: CMake
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "master" ]
|
branches: [ "master", "develop" ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "master" ]
|
branches: [ "master", "develop" ]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
- name: Configure LWS
|
- name: Configure LWS
|
||||||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
||||||
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
||||||
run: cmake -B ${{github.workspace}}/lws/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMONERO_SOURCE_DIR=${{github.workspace}}/monero -DMONERO_BUILD_DIR=${{github.workspace}}/monero/build ${{gitub.workspace}}/lws
|
run: cmake -B ${{github.workspace}}/lws/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DMONERO_SOURCE_DIR=${{github.workspace}}/monero -DMONERO_BUILD_DIR=${{github.workspace}}/monero/build ${{github.workspace}}/lws
|
||||||
|
|
||||||
- name: Build LWS
|
- name: Build LWS
|
||||||
# Build your program with the given configuration
|
# Build your program with the given configuration
|
||||||
|
|
Loading…
Reference in a new issue