Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue1360 new actions runner #1361

Merged
merged 38 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
687b948
change path to runner
louisher May 14, 2024
fd12bfe
old path
louisher May 14, 2024
1364d55
Update github-actions.yml
louisher May 14, 2024
26199b4
Update github-actions.yml
louisher May 14, 2024
1a55d25
Update github-actions.yml
louisher May 16, 2024
f29f772
Update github-actions.yml
louisher May 16, 2024
31fae03
Update github-actions.yml
louisher May 16, 2024
aed055e
Update github-actions.yml
louisher May 18, 2024
cead21f
Update github-actions.yml
louisher May 18, 2024
079c82e
Update github-actions.yml with correct path of _work
louisher May 18, 2024
b64126b
Update github-actions.yml
louisher May 18, 2024
b775910
Update github-actions.yml
louisher May 30, 2024
a832481
Update github-actions.yml
louisher May 30, 2024
0feeed2
Update github-actions.yml
louisher May 30, 2024
9c15094
add correct tag in test part
louisher May 30, 2024
ebf2570
Update github-actions.yml
louisher May 30, 2024
f2b0923
Update github-actions.yml
louisher May 30, 2024
d5aa389
Update github-actions.yml
louisher May 30, 2024
34dd9d1
Update github-actions.yml
louisher May 30, 2024
c43b64b
Update github-actions.yml
louisher May 30, 2024
1082a81
Update github-actions.yml
louisher May 30, 2024
9a8d7d9
Update github-actions.yml
louisher May 30, 2024
08804b8
Update github-actions.yml
louisher May 30, 2024
9eeac07
Update github-actions.yml
louisher May 30, 2024
a69536f
Update github-actions.yml
louisher May 30, 2024
ea5f491
Update github-actions.yml
louisher May 30, 2024
d9a4356
Update github-actions.yml
louisher May 30, 2024
19fc3b8
Update github-actions.yml
louisher May 30, 2024
ce69b39
Update github-actions.yml
louisher May 30, 2024
024dc0e
Update github-actions.yml
louisher May 30, 2024
f7b8456
Update github-actions.yml
louisher May 30, 2024
d449d04
Update runUnitTests.py
louisher May 30, 2024
0a8d28f
Update runUnitTests.py
louisher May 30, 2024
0339885
Update runUnitTests.py
louisher May 30, 2024
706b23c
Update runUnitTests.py
louisher May 30, 2024
7e164bb
Update github-actions.yml
louisher May 30, 2024
483b27e
Update github-actions.yml
louisher May 30, 2024
10a0761
Update github-actions.yml
louisher May 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,28 @@ on:
pull_request:
jobs:
build:
runs-on: self-hosted
runs-on: blizz

steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event"
- run: echo "🐧 This job is now running on a ${{ runner.os }} server called tony-de-rekenpony hosted by The Sysis team at KU Leuven"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}"
- run: echo "The following commands are used to remove files inside container to ensure cleanup and avoid permission errors"
- run: docker stop dymimg > /dev/null 2>&1 || true
- run: docker run --name dymimg --detach=true --rm -v /home/actions-runner/_work/IDEAS/IDEAS:/home/developer/IDEAS -w /home/developer/IDEAS -it dymimg
- run: docker run --name dymimg --detach=true --rm -v /home/u0148284/actions-runner/_work/IDEAS/IDEAS:/home/developer/IDEAS -w /home/developer/IDEAS -it dymimg
- run: docker exec -t dymimg /bin/bash -c "rm -rf IDEAS && exit"
- run: docker stop dymimg > /dev/null 2>&1 || true
- name: Check out repository code
uses: actions/checkout@v3
with:
clean: true
- name: Change permissions of repository folder
run: chmod -R 777 /home/actions-runner/_work
run: chmod -R 777 /home/u0148284/actions-runner/_work
- name: List of files in the repository
run: |
ls ${{ github.workspace }}
test:
runs-on: self-hosted
runs-on: blizz
needs: build
defaults:
run:
Expand Down Expand Up @@ -93,4 +94,4 @@ jobs:
- name: Test IDEAS.Examples.Tutorial
run: make test-dymola PACKAGE=\"IDEAS.Examples.Tutorial\" INTERACTIVE=false
- name: Test IDEAS.Examples.TwinHouses
run: make test-dymola PACKAGE=\"IDEAS.Examples.TwinHouses\" INTERACTIVE=false
run: make test-dymola PACKAGE=\"IDEAS.Examples.TwinHouses\" INTERACTIVE=false
1 change: 0 additions & 1 deletion bin/runUnitTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ def _runUnitTests(batch, tool, package, path, n_pro, show_gui):

# ut.writeOpenModelicaResultDictionary()
# Run the regression tests

retVal = ut.run()
return retVal

Expand Down
Loading