Skip to content

Commit

Permalink
update assembly names
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Feb 4, 2024
1 parent c926705 commit a2fa4ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/mk_nuget_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def mk_dir(d):
if not os.path.exists(d):
os.makedirs(d)

os_info = { 'ubuntu-latest' : ('so', 'linux-x64'),
'ubuntu-18' : ('so', 'linux-x64'),
'ubuntu-20' : ('so', 'linux-x64'),
'ubuntu-22' : ('so', 'linux-x64'),
os_info = { 'x64-ubuntu-latest' : ('so', 'linux-x64'),
'x64-ubuntu-18' : ('so', 'linux-x64'),
'x64-ubuntu-20' : ('so', 'linux-x64'),
'x64-ubuntu-22' : ('so', 'linux-x64'),
'x64-glibc-2.35' : ('so', 'linux-x64'),
'x64-win' : ('dll', 'win-x64'),
'x86-win' : ('dll', 'win-x86'),
Expand Down
1 change: 1 addition & 0 deletions scripts/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ stages:
parameters:
ReleaseVersion: $(ReleaseVersion)
BuildArchitecture: 'arm64'
VCArchitecture: 'amd64_arm64'


# Creates Z3 packages in various formats
Expand Down

0 comments on commit a2fa4ff

Please sign in to comment.