Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
pvelesko committed Aug 6, 2024
1 parent 94cfdf3 commit 43a051c
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 76 deletions.
148 changes: 74 additions & 74 deletions .github/workflows/check-unit-tests-intel.yml
Original file line number Diff line number Diff line change
@@ -1,79 +1,79 @@
# Workflow syntax:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
name: unit-test-checker-intel
# name: unit-test-checker-intel

on:
pull_request:
paths-ignore: "docs/**"
# on:
# pull_request:
# paths-ignore: "docs/**"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
# concurrency:
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# cancel-in-progress: true

jobs:
unit-tests-llvm-16-debug:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh debug llvm-16
shell: bash
unit-tests-llvm-16-release:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh release llvm-16
shell: bash
unit-tests-llvm-17-debug:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh debug llvm-17
shell: bash
unit-tests-llvm-17-release:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh release llvm-17
shell: bash
unit-tests-llvm-18-debug:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh debug llvm-18
shell: bash
unit-tests-llvm-18-release:
runs-on: X64
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
submodules: 'recursive'
- name: Run unit test checking script
run: ./scripts/unit_tests.sh release llvm-18
shell: bash
# jobs:
# unit-tests-llvm-16-debug:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh debug llvm-16
# shell: bash
# unit-tests-llvm-16-release:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh release llvm-16
# shell: bash
# unit-tests-llvm-17-debug:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh debug llvm-17
# shell: bash
# unit-tests-llvm-17-release:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh release llvm-17
# shell: bash
# unit-tests-llvm-18-debug:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh debug llvm-18
# shell: bash
# unit-tests-llvm-18-release:
# runs-on: X64
# steps:
# - uses: actions/checkout@v3
# with:
# ref: ${{ github.event.pull_request.head.sha }}
# fetch-depth: 0
# submodules: 'recursive'
# - name: Run unit test checking script
# run: ./scripts/unit_tests.sh release llvm-18
# shell: bash
12 changes: 10 additions & 2 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: [self-hosted, Linux, X64]
steps:
- uses: actions/checkout@v3

Expand All @@ -23,6 +23,14 @@ jobs:
push: false
tags: pveleskopglc/chipstar:latest
outputs: type=docker,dest=/tmp/chipstar-latest.tar

- name: Check Docker build result
run: |
echo "Checking for Docker image file"
ls -l /tmp/chipstar-latest.tar
echo "Docker image file size:"
du -h /tmp/chipstar-latest.tar
echo "Build step completed"
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -50,4 +58,4 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Push latest image
run: docker push pveleskopglc/chipstar:latest
run: docker push pveleskopglc/chipstar:latest

0 comments on commit 43a051c

Please sign in to comment.