Skip to content

Commit 10fdca1

Browse files
committed
Squashed commit of the following:
commit 6c56a00 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 16:14:34 2025 +0000 archive commit 32e0460 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 16:10:49 2025 +0000 unzipped commit c8d7e70 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:57:21 2025 +0000 can't test archive until release commit ae5ccc4 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:51:57 2025 +0000 try to test download of archive commit a1d92f3 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:49:33 2025 +0000 unzip commit f73ad0a Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:45:12 2025 +0000 path to unzipped dir commit d6a70f8 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:43:49 2025 +0000 copy archive to root dir commit 2b8c85f Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:42:40 2025 +0000 correct archive name commit 445b549 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:41:34 2025 +0000 try 6 commit 8eee30a Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:35:54 2025 +0000 try 5 commit 69a8746 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:33:40 2025 +0000 try 4 commit 074f2bb Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:32:46 2025 +0000 try 3 commit 0989aca Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:27:07 2025 +0000 try 2 commit f0e1362 Author: Ivet Galabova <[email protected]> Date: Wed Mar 19 15:19:22 2025 +0000 try
1 parent 7f28e6c commit 10fdca1

File tree

2 files changed

+44
-15
lines changed

2 files changed

+44
-15
lines changed

.github/workflows/release-archive-artifact.yml

Lines changed: 37 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,48 @@ jobs:
1212
- name: Checkout
1313
uses: actions/checkout@v4
1414

15-
- name: Generate archive artifact
15+
- name: Create Build Environment
16+
run: cmake -E make_directory ${{runner.workspace}}/archive
17+
18+
- name: Create Build Environment
19+
run: cmake -E make_directory ${{runner.workspace}}/archive_unzipped
20+
21+
- name: working dir
1622
run: |
1723
pwd
18-
ls
19-
echo $GITHUB_WORKSPACE
20-
echo ${runner.workspace}
21-
cd ..
22-
ls
24+
echo ${{runner.workspace}}
25+
echo ""
26+
ls ${{runner.workspace}}/HiGHS
2327
24-
- name: working dir
28+
# ls
29+
# echo $GITHUB_WORKSPACE
30+
31+
- name: Generate archive artifact
2532
run: |
2633
pwd
27-
ls
28-
# tar -czvf source-archive.tar.gz $GITHUB_WORKSPACE
34+
cd ${{runner.workspace}}
35+
pwd
36+
tar -czvf source-archive.tar.gz HiGHS
37+
38+
# --exclude='./archive'
39+
40+
- name: unzip archive
41+
run: |
42+
cd ${{runner.workspace}}
43+
tar -xvzf source-archive.tar.gz -C ${{runner.workspace}}/archive_unzipped
44+
45+
- name: ls unziped archive
46+
run: |
47+
cd ${{runner.workspace}}/archive_unzipped
48+
pwd
49+
ls
50+
cd HiGHS
51+
ls
52+
53+
- name: copy archive
54+
run: |
55+
cp ${{runner.workspace}}/source-archive.tar.gz .
56+
ls
2957
3058
- name: Release
3159
uses: softprops/action-gh-release@v2

FEATURES.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
## Build changes
22

3-
Added code coverage report
3+
Added code coverage report.
4+
5+
Replaced command line parsing library with CLI11. Removed C++17 reference with cxxopts, which is no longer in HiGHS.
46

57
## Code changes
68

@@ -34,15 +36,14 @@ Model status is set appropriately when a solver's claimed optimality doesn't sat
3436

3537
Command line parsing now done with pure C++11 code
3638

39+
Added command line flags to read basis from and write basis to a file
40+
3741
Bug fixes in records of primal/dual rays
3842

3943
MPS read utility improved. Error logging is now less verbose; inability to handle USERCUTS section is properly logged
4044

4145
Implemented lifting for probing as described by Achterberg et al in _Presolve Reductions in Mixed Integer Programming._ INFORMS Journal on Computing 32(2):473-506 (2019). Not used by default, but option mip_lifting_for_probing allows it to be used with two levels of modification
4246

47+
Propagated updates from cuPDLP-C
4348

44-
45-
46-
47-
48-
49+
Added GPU support for cuPDLP-C

0 commit comments

Comments
 (0)