Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 5 additions & 2 deletions .github/workflows/patchworks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:

mkdir patch_urls
mkdir patchworks_urls
python scripts/create_patches_files.py -backup $(cat date_older.txt) -start $(cat date_old.txt) -end $(cat date_recent.txt)
# python scripts/create_patches_files.py -backup $(cat date_older.txt) -start $(cat date_old.txt) -end $(cat date_recent.txt)
python scripts/create_patches_files.py -backup 2023-09-24T03:02:00 -start 2023-09-24T03:17:00 -end 2023-09-24T03:32:00

- name: List patch artifacts
id: list_patches
Expand Down Expand Up @@ -76,7 +77,8 @@ jobs:

export GCCHASH=$(python ./scripts/get_baseline_hash.py -token ${{ secrets.GITHUB_TOKEN }})
echo $GCCHASH
echo "gcchash=$GCCHASH" >> $GITHUB_OUTPUT
# echo "gcchash=$GCCHASH" >> $GITHUB_OUTPUT
echo "gcchash=92f2ec417c57e980b92b8966226fc2bfbf042af8" >> $GITHUB_OUTPUT # commit from 9/18/2021

- name: Retrieve cache
id: retrieve-cache
Expand Down Expand Up @@ -110,6 +112,7 @@ jobs:
cd gcc
git checkout master
git pull
git checkout d35e12e1c08992f94d4d43bc8ef16482d200091b

- name: Cache submodules
if: steps.retrieve-cache.outputs.cache-hit != 'true'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ jobs:
if: ${{ inputs.build_only == 'true' }}
run: |
cd gcc
git checkout -
git reset --hard origin/master
git pull
git pull origin master

- name: Apply patches
run: |
Expand Down