diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2021-06-22 18:25:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 11:25:55 -0700 |
commit | 6951511e7079a0ff4b0ae06d137f9b3bd18b81f8 (patch) | |
tree | 8259ee93d8e6d89de62762883e0a4aa42cbe6211 /.github | |
parent | 40fc101296b11ef237a80224a194c2817e5864c3 (diff) | |
download | binaryen-6951511e7079a0ff4b0ae06d137f9b3bd18b81f8.tar.gz binaryen-6951511e7079a0ff4b0ae06d137f9b3bd18b81f8.tar.bz2 binaryen-6951511e7079a0ff4b0ae06d137f9b3bd18b81f8.zip |
Revert accidental debugging changes from #3935 (#3950)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa9cfed54..41bbb031e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,14 +78,14 @@ jobs: - name: cmake (win) # -G "Visual Studio 15 2017" - run: cmake -S . -B out -DCMAKE_INSTALL_PREFIX=out/install -DCMAKE_BUILD_TYPE=RelWithDebInfo + run: cmake -S . -B out -DCMAKE_INSTALL_PREFIX=out/install if: matrix.os == 'windows-latest' - name: build - run: cmake --build out --config RelWithDebInfo + run: cmake --build out --config Release - name: install - run: cmake --install out --config RelWithDebInfo + run: cmake --install out --config Release - name: strip run: find out/install/ -type f -perm -u=x -exec strip -x {} + |