From 0c03419e767d64d909901142604eeb14e9eef540 Mon Sep 17 00:00:00 2001 From: Joris Gillis Date: Sun, 14 Jul 2024 23:30:43 +0200 Subject: [PATCH] ci cmake --- .github/workflows/build.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a13b60e..8c257ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,9 +9,6 @@ jobs: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} timeout-minutes: 60 - permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created - actions: write - contents: read strategy: fail-fast: false matrix: @@ -32,16 +29,11 @@ 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 + cmake -B build -DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON # Upload as release asset - uses: vimtor/action-zip@v1.2 with: - files: foo/ + files: build/madnlp_c--0.1.0 recursive: true dest: foo.zip - uses: actions/upload-artifact@v4.3.1