Skip to content

Commit ca157b7

Browse files
authored
Merge branch 'main' into issue-495
2 parents ee6ab60 + 3cb5080 commit ca157b7

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
run: |
6464
echo "zpm \"install testcoverage\":1:1" > install-testcoverage
6565
docker exec --interactive $instance iris session $instance -B < install-testcoverage
66+
chmod 777 $GITHUB_WORKSPACE
6667
6768
- name: Build and Test
6869
run: |
@@ -72,7 +73,12 @@ jobs:
7273
echo "do \$System.OBJ.CompilePackage(\"$test_package\",\"ckd\") " > test.script
7374
# Run tests
7475
echo "zpm \"$package test -only $test_flags\":1:1" >> test.script
75-
docker exec --interactive $instance iris session $instance -B < build.script && docker exec --interactive $instance iris session $instance -B < test.script &&bash <(curl -s https://codecov.io/bash)
76+
docker exec --interactive $instance iris session $instance -B < build.script && docker exec --interactive $instance iris session $instance -B < test.script
77+
78+
- name: Upload coverage reports to Codecov with GitHub Action
79+
uses: codecov/[email protected]
80+
env:
81+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7682

7783
- name: Produce CE Artifact
7884
run: |

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Added warnings when user is using incompatible git version (#488)
1818
- Fixed the back button navigation between WebUI and Settings page (#361)
1919
- Fixed issues with HL7 file extension inconsistencies (#495)
20+
- Basic mode Sync operation now imports items changed on the remote merge branch (#506)
2021

2122
## [2.5.0] - 2024-09-24
2223

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ ClassMethod MergeDefaultRemoteBranch(Output alert As %String = "") As %Boolean
440440
do ..RunGitWithArgs(.errStream, .outStream, "fetch", "origin", defaultMergeBranch_":"_defaultMergeBranch)
441441
do ..PrintStreams(errStream, outStream)
442442

443-
do ..RunGitWithArgs(,.outStream, "rev-parse", defaultMergeBranch)
443+
do ..RunGitWithArgs(,.outStream, "rev-parse", "HEAD")
444444
set startSha = outStream.ReadLine()
445445

446446
// Start a transaction so code changes can be rolled back

0 commit comments

Comments
 (0)