Skip to content

Commit

Permalink
First version
Browse files Browse the repository at this point in the history
  • Loading branch information
tmmsartor committed Jul 13, 2024
1 parent 737979e commit 3427f65
Show file tree
Hide file tree
Showing 7 changed files with 1,287 additions and 47 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
os:
- windows-2022
- ubuntu-20.04
- macos-11
#- macos-11
arch:
- x64
steps:
Expand All @@ -32,7 +32,21 @@ jobs:
julia --startup-file=no --project=. -e 'using Pkg; Pkg.instantiate()'
julia --startup-file=no --project=compiler -e 'using Pkg; Pkg.instantiate()'
julia --startup-file=no --project=compiler compiler/build.jl foo
# Upload as release asset
- name: build archives
run: |
zip -rq foo.zip foo --exclude '.*' --exclude '*/.*' --exclude 'appveyor.yml'
- name: Upload files to a GitHub release
uses: svenstaro/[email protected]
with:
overwrite: true
tag: v0.1
file: foo.zip
asset_name: madnlp-jl${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}.zip
prerelease: true

- uses: actions/[email protected]
with:
name: foo-${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}
name: madnlp-jl${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}
path: foo
Loading

0 comments on commit 3427f65

Please sign in to comment.