diff --git a/.github/actions/build-moos-core/action.yml b/.github/actions/build-moos-core/action.yml deleted file mode 100644 index 1b01ec8..0000000 --- a/.github/actions/build-moos-core/action.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: 'Build MOOS core' -description: 'Builds MOOS core static libraries from sourcecode' -# inputs: -# who-to-greet: # id of input -# description: 'Who to greet' -# required: true -# default: 'World' -# outputs: -# random-number: -# description: "Random number" -# value: ${{ steps.random-number-generator.outputs.random-id }} -runs: - using: "composite" - steps: - - name: Checkout MOOS source - uses: actions/checkout@v2 - with: - repository: 'https://github.com/themoos/core-moos' - - # The branch, tag or SHA to checkout. When checking out the repository that - # triggered a workflow, this defaults to the reference or SHA for that event. - # Otherwise, uses the default branch. - # ref: '' - - # Relative path under $GITHUB_WORKSPACE to place the repository - path: 'core-moos' - - - name: 'Run CMake' - uses: lukka/run-cmake@v3 - with: - cmakeListsOrSettingsJson: CMakeListsTxtAdvanced - cmakeListsTxtPath: '${{ github.workspace }}/core-moos/CMakeLists.txt' - buildDirectory: '${{ github.workspace }}/moos-core/build' - cmakeAppendedArgs: ' -DBUILD_SHARED_LIBS=OFF -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_BUILD_TYPE=Release' # -GNinja - - - # - run: echo Hello ${{ inputs.who-to-greet }}. - # shell: bash - # - id: random-number-generator - # run: echo "::set-output name=random-id::$(echo $RANDOM)" - # shell: bash - - # - if [ "`uname`" != "Darwin" ] ; then export MOOS_CXX_FLAGS="-fPIC -Wno-long-long"; fi - # - if [ "`uname`" != "Darwin" ] ; then export CXX="g++-4.8"; fi - # - if [ "$TRAVIS_OS_NAME" = "linux" ]; then export CXX=g++-4.8 CC=gcc-4.8; fi - # - | - # cd .. - # cd core-moos - # mkdir build - # cd build - # cmake -DENABLE_EXPORT=ON -DUSE_ASYNC_COMMS=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=$MOOS_CXX_FLAGS .. - # cmake --build . --config Release --config -j4 - # sudo cmake --build . --config Release --target install - # cd $TRAVIS_BUILD_DIR \ No newline at end of file diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 0090e34..f30054f 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: push: branches: - - ci-actions + - master pull_request: jobs: diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index 4ccab6c..9608c31 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -5,7 +5,7 @@ on: pull_request: push: branches: - - ci-actions + - master jobs: build: diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 05b2da1..d9a96c4 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -5,7 +5,7 @@ on: pull_request: push: branches: - - ci-actions + - master release: types: - published