Skip to content

Commit

Permalink
ci: Avoid using cmake, skip upload release
Browse files Browse the repository at this point in the history
  • Loading branch information
tmmsartor committed Jul 14, 2024
1 parent a6cc14c commit 5400df2
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,27 @@ jobs:
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- run: |
mkdir build
cmake -B build
make -C build
#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
#mkdir build
#cmake -B build
#make -C build
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
- uses: vimtor/[email protected]
with:
files: build/madnlp_c-0.8.3-0.1.0/
files: foo/
recursive: true
dest: madnlp_c-0.8.3-1.zip
- name: Upload files to a GitHub release
uses: svenstaro/[email protected]
with:
overwrite: true
tag: v0.1
file: madnlp_c-0.8.3-1.zip
asset_name: madnlp-jl${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}.zip
prerelease: true
dest: foo.zip
#- 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: madnlp-jl${{ matrix.version}}-${{ matrix.os }}-${{ matrix.arch }}
path: build/madnlp_c-0.8.3-0.1.0/
path: foo.zip

0 comments on commit 5400df2

Please sign in to comment.