Skip to content

Commit

Permalink
adding darwin artefact
Browse files Browse the repository at this point in the history
  • Loading branch information
gitting-around committed Oct 31, 2024
1 parent f4c92a5 commit cfb96a4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ jobs:
with:
submodules: true

# - name: Restore external dependencies from cache
# id: cache-external-deps
# uses: actions/cache@v4
# with:
# path: build/external/
# key: ${{ runner.os }}-external-deps
- name: Restore external dependencies from cache
id: cache-external-deps
uses: actions/cache@v4
with:
path: build/external/
key: ${{ runner.os }}-external-deps

# - name: Check if external dependencies are in the cache
# if: steps.cache-external-deps.outputs.cache-hit == 'true'
# run: echo External dependencies already generated
- name: Check if external dependencies are in the cache
if: steps.cache-external-deps.outputs.cache-hit == 'true'
run: echo External dependencies already generated

# why this one: in order to run the integration test
- name: get rabbitmq Ubuntu ONLY
Expand Down Expand Up @@ -190,12 +190,12 @@ jobs:
echo Running it-test-rabbitmq
./build/linux-x64/rabbitmq-fmu/it-test-rabbitmq
#- name: Upload artifact macos
# if: matrix.os == 'macos-latest'
# uses: actions/upload-artifact@v2
# with:
# name: rabbitmq.dylib
# path: build/darwin-x64/rabbitmq-fmu/rabbitmq.dylib
- name: Upload artifact macos
if: matrix.os == 'macos-13'
uses: actions/upload-artifact@v2
with:
name: rabbitmq.dylib
path: build/darwin-x64/rabbitmq-fmu/rabbitmq.dylib

- name: Upload artifact linux
if: matrix.os == 'ubuntu-22.04'
Expand Down Expand Up @@ -288,11 +288,11 @@ jobs:
name: rabbitmq.so
path: rabbitmq/binaries/linux64/

#- name: Download dylib
# uses: actions/download-artifact@v2
# with:
# name: rabbitmq.dylib
# path: rabbitmq/binaries/darwin64/
- name: Download dylib
uses: actions/download-artifact@v2
with:
name: rabbitmq.dylib
path: rabbitmq/binaries/darwin64/

- name: Download model description file
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion rabbitmq-fmu/test/fmu_test_it.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ namespace {

TEST(FmuContainerCoreTest, checksConvertTimeToString)
{
GTEST_SKIP();
//GTEST_SKIP();
cout << "Testing: FmuContainerCore::convertTimeToString " << endl;
std::chrono::milliseconds maxAge(1000);
std::map<FmuContainerCore::ScalarVariableId, int> lookAhead;
Expand Down

0 comments on commit cfb96a4

Please sign in to comment.